Skip to content

Commit

Permalink
[Doc] Add code example of how to use custom filters (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
zenpk authored Jul 8, 2024
1 parent eda7946 commit 82f315e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,8 @@ func main() {
return 1, nil
},
})
// use the added filter
v.FilterRule("field", "myToIntFilter0")
}
```

Expand Down
3 changes: 1 addition & 2 deletions _examples/httpdemo2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ func main() {
v := data.Create()
// setting rules
v.
// StringRule("categoryId", "required|int|min:1", "newIsInt").
StringRule("categoryId", "required|int|min:1", "toInt").
StringRule("categoryId", "required|int|min:1", "newIsInt").
AddMessages(map[string]string{
"required": "the {field} is required",
"min": "{field} min value is %d",
Expand Down

0 comments on commit 82f315e

Please sign in to comment.