我目前正在为我的项目使用typo3-neos,我遇到了这个问题。我尝试在 .yaml 文件中制作这样的自定义节点
'TYPO3.Designs:SomeItem':
superTypes:
- 'TYPO3.Neos:Content'
ui:
group: 'structure'
label: 'Some Item'
icon: 'icon-columns'
inlineEditable: true
inspector:
groups:
document:
label: 'Item options'
position: 1
properties:
someitem:
type: string
defaultValue: 'item1'
ui:
label: 'Alignment'
reloadIfChanged: TRUE
inspector:
group: 'document'
editor: 'TYPO3.Neos/Inspector/Editors/SelectBoxEditor'
editorOptions:
values:
item1:
label: 'item1'
item2:
label: 'item2'
right:
label: 'item3'
在这部分
editorOptions:
values:
item1:
label: 'item1'
item2:
label: 'item2'
right:
label: 'item3'
我想从数据库中获取数据,所以如果数据库中有 10 个项目,它将在编辑器中出现 10 个选项。
我怎样才能做到这一点?任何帮助表示赞赏,谢谢