我很好奇,是否有一种解决方案可以将字段要求(类型,长度,必需)与API一起发送,我可以将其用于表单验证。
所以...我期望的是:
答案 0 :(得分:0)
只需将更多属性添加到响应主体以指定要求。例如:
{
"fields": [{
"field": "username",
"type": "String",
"minLength": 3,
"maxLength": 20,
"required": true
}, {
"field": "password",
"type": "String",
"minLength": 6,
"maxLength": 15,
"required": true
}]
}