【发布时间】:2017-03-28 13:28:25
【问题描述】:
我将 Prismic.io 用作无头 CMS,并将内容引入我的 React 前端。如何设置内容类型以使字段为必填项?
这是我目前所拥有的......
{
"Main" : {
"uid" : {
"type" : "UID",
"config" : {
"placeholder" : "UID"
}
},
"image" : {
"type" : "Image"
},
"title" : {
"type" : "StructuredText",
"config" : {
"single" : "heading1",
"placeholder" : "Title..."
}
},
"description" : {
"type" : "StructuredText",
"config" : {
"multi" : "paragraph,em,strong,hyperlink",
"placeholder" : "Description..."
}
}
}
}
【问题讨论】:
标签: reactjs paas prismic.io