御焱
御焱
  • 发布:2023-04-18 14:34
  • 更新:2024-05-09 13:34
  • 阅读:352

【报Bug】数据库验证失败:用户标识字段为枚举类型,提交内容不在枚举范围内

分类:uniCloud

产品分类: uniCloud/App

示例代码:

// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType": "object",
"required": [],
"permission": {
"read": false,
"create": true,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户标识",
"label": "用户标识",
"forceDefaultValue": {
"$env": "uid"
},
"foreignKey": "uni-id-users._id",
"enum": {
"collection": "uni-id-users",
"field": "_id as value, nickname as text"
}
},
"situation": {
"bsonType": "int",
"description": "情况"
},
"create_time": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
}
}
}

操作步骤:

如图

预期结果:

如图

实际结果:

如图

bug描述:

数据库验证失败:用户标识字段为枚举类型,提交内容不在枚举范围内
连接本地云函数,没有问题。但是切换到云端云函数,就有问题了

2023-04-18 14:34 负责人:无 分享
已邀请:
DCloud_uniCloud_CRL

DCloud_uniCloud_CRL

schema 上传了吗?

  • 御焱 (作者)

    上传了

    2023-04-18 20:39

h***@qq.com

h***@qq.com

我遇到了同样的问题,请问解决了吗

要回复问题请先登录注册