我正在寻找验证以下数据结构的解决方案:
具有相同键(propertyA
,propertyB
)和相同类型值(string
)的对象数组。
{
title: 'Hello World',
toValidate: [
{
propertyA: 'string', // Always the same keys
propertyB: 'string' // Always a string
},
{
propertyA: 'string',
propertyB: 'string'
}
]
}
答案 0 :(得分:0)
您可能正在寻找子集。他们可以有自己的验证规则。