ygj6

Results 94 comments of ygj6

It seems that the esbuild upgrade caused this problem. I have tried to downgrade esbuild to ^0.9.3 in vite, and can also solve this problem. Here is another similar issue:...

@elvinchan chan Add required to solve the problem. ``` type Input struct { Keyword string `valid:"stringlength(3|64) , required"` } ```

@avirkar,I have tested the latest version is ok, so which version did you find the problem on? **The test code is as follows:** ``` func TestIssue343(t *testing.T) { // Template...

I've written an example to test it. There are three errors in `Addresses`, but only one error is given. **The code is as follows:** ``` func TestIssue353(t *testing.T) { type...

This issue has been resolved. PR https://github.com/asaskevich/govalidator/pull/382

This issue has been resolved. PR https://github.com/asaskevich/govalidator/pull/382

@mwmahlberg This issue has been resolved. https://github.com/asaskevich/govalidator/pull/382

You defined two `ref = "userForm"` in the template, and `$refs ['userForm']` can only get the last `userForm` object, so register will only verify the last `userForm`.

Please refer to https://github.com/yiminghe/async-validator#deep-rules

Maybe you can custom validate function for specified field. https://github.com/yiminghe/async-validator/issues/160#issuecomment-563931347