GithubHelp home page GithubHelp logo

Comments (6)

burner-account avatar burner-account commented on May 17, 2024 1

Please forgive my stackoverflow-like usage of github.

My initial idea would be to not modify the 'validation.By' signature but to wrap your custom rule function.

func buildCheckABC(args ...interface{}) {
    return func checkAbc(value interface{}) error {
       // do something with 'args' and 'value'
    }
}

And then call it somewhat like

err := validation.Validate("xyz", validation.By( buildCheckABC(arg1, arg2)))

Just an idea, not tested at all.

from ozzo-validation.

 avatar commented on May 17, 2024

I tried the same but it create cyclic import issue if I send the whole struct. (Possible way to send each field separately and handled the same in return func)
In my case, I need to validate a field by creating a HMAC using the other fields in the same struct and compare the same against the filed passed for validation.

from ozzo-validation.

LindseyB avatar LindseyB commented on May 17, 2024

I'm running into the same issue, has anyone figure out a solution for this?

from ozzo-validation.

qiangxue avatar qiangxue commented on May 17, 2024

Have you tried @burner-account's suggestion? It should work.

from ozzo-validation.

LindseyB avatar LindseyB commented on May 17, 2024

Oh that does work @qiangxue, thanks do you think its worth wile to add docs for this?

from ozzo-validation.

qiangxue avatar qiangxue commented on May 17, 2024

This is a typical usage of using closure to parameterize a function. But yes, it doesn't hurt to add an example to the docs.

from ozzo-validation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.