是否可以在stradi中编写内容类型和组的代码,还是必须通过后端admin gui来完成?
如果可能的话,有人可以给我发送文档链接或演示如何完成。我找不到任何东西。
答案 0 :(得分:0)
Ho!你是对的。没有有关手动创建组的文档。
要手动创建组,必须在Strapi项目中创建一个./groups
文件夹。
然后,您将必须为每个模型创建一个文件。
例如— ./groups/openning_hours.json
此文件的结构与模型相同。
{
"info": {
"name": "openning_hours",
"description": ""
},
"connection": "default",
"collectionName": "groups_openning_hours",
"attributes": {
"name": {
"type": "string"
}
}
}
然后,如果要将内容类型链接到组,则必须更新“内容类型”模型属性并添加新属性。
"openning_hours": { <- Will be your attribute name
"group": "openning_hours", <- Is the group name you created
"type": "group"
}