我使用 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..."
}
}
}
}