schema2code 用于通过 schema 文件,自动生成对表进行增删改查的操作页面。
以 uniCloud-aliyun/database/todo.schema.json 为例
{"bsonType": "object","required": [],"permission": {"read": true,"create": true,"update": true,"delete": true},"properties": {"_id": {"description": "ID,系统自动生成"},"content": {"bsonType": "string","label": "内容:"}}
}
范例中的字段类型必须设置(否则 schema2code 无法渲染表单)
"content": {"bsonType": "string", // 必要!!!"label": "内容:"}
若提示安装插件 schema2code 则安装
将文件 pages/todo/list.vue 中的
{{item._id}}
改为
{{item.content}}
默认生成的列表只展示_id,此处需自行修改成想要的效果
运行项目,访问 http://localhost:8080/#/pages/todo/list