You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
construles={'a.b.c': [{required: true,message: 'a.b.c is required'},{type: 'string',message: 'a.b.c must be a string'},],};constdata={a: {b: {c: '123'}}}
比如有以下对象,要验证c属性:
{ a: { b: { c: 'ccc' } } }
规则是这样写吗?不生效啊
a: { type: 'object', required: true, fields: { b: { type: 'object', required: true, fields: { c: { type: 'string', required: true } } } } }
The text was updated successfully, but these errors were encountered: