现状
在schema;.json
中设置一个属性,代码如下:
{
"bsonType": "object",
"required": [ "voucher_pic",],
"permission": {
"read": "auth.uid == doc.user_id",
"create": true,
"update": false,
"delete": false
},
"properties": {
"voucher_pic": {
"bsonType": "string",
"title": "运动凭证",
"errorMessage":{
"required": "{title}必须上传"
}
}
},
"version": "0.0.1"
}
结果测试不上传该字段值会出现弹框,内容为{title}必须上传
期待结果
希望弹框内容为运动凭证必须上传
freedemon (作者)
是的,用label是可以,如果是用label的话,文档应该更新一下,不该让读者误会。另外数据库验证失败这个前缀也应该去掉,或者是可让开发者自己选择去掉。
2022-10-28 21:02