其余API字段要求

时间:2019-01-14 09:30:11

标签: php forms rest api

我很好奇,是否有一种解决方案可以将字段要求(类型,长度,必需)与API一起发送,我可以将其用于表单验证。

所以...我期望的是:

  • 页面加载
  • 从API获取必填字段及其要求。
  • 根据需求构建表单

1 个答案:

答案 0 :(得分:0)

只需将更多属性添加到响应主体以指定要求。例如:

{
    "fields": [{
        "field": "username",
        "type": "String",
        "minLength": 3,
        "maxLength": 20,
        "required": true
    }, {
        "field": "password",
        "type": "String",
        "minLength": 6,
        "maxLength": 15,
        "required": true
    }]
}