Closed
Description
type Order struct {
ActorOrder *ActorOrderReq `p:"actor_order" v:"required-without:PlaceOrder"`
PlaceOrder *PlaceOrderReq `p:"place_order" v:"required-without:ActorOrder"`
}
Although I set the value of one field, the other field will still be verified.
problem file: gvalid_validator_check_struct.go
Activity