我已按照您的指南关注人物:http://apostrophecms.org/docs/tutorials/getting-started/reusable-content-with-pieces.html
这是传记定义:
{
name: 'body',
label: 'Biography',
type: 'area',
options: {
widgets: {
'apostrophe-rich-text': {
controls: ['Bold', 'Italic', 'Link', 'Unlink']
},
'apostrophe-images': { }
}
}
}
因此,我认为我可以设计传记。但是,无论是在模态对话框中,还是在人物页面中,我都看不到用于设置文本样式的工具栏。
感谢您的帮助!
答案 0 :(得分:1)
指南有拼写错误.. controls
属性应为toolbar
{
name: 'body',
label: 'Biography',
type: 'area',
options: {
widgets: {
'apostrophe-rich-text': {
toolbar: ['Bold', 'Italic', 'Link', 'Unlink']
},
'apostrophe-images': { }
}
}
}
我会修复文档,谢谢!