我在表中添加了一个枚举字段,已经为它创建了一个管理部分,所以我运行了构建模型和bield sql的任务,我试图更新表的管理部分的视图,但似乎是学说或类似的东西不支持枚举。
作为一个侧面解决方案,我试图将enum字段显示为用户正常文本输入,以便用户编写他们想要的选项,但两者都没有成功,这里是我放在generator.yml文件中的配置样本:
config:
actions: ~
filter: ~
fields:
name : {name: Tab Name, help: Title of the tab to be displayed in the menu}
is_top_tab : {name: Top Tab?, help: Would this tab de displayed in the main menu}
visibility : {name: Visibility, help: Who can see the tab}
form:
display:
Editable: [name, is_top_tab, visibility]
list:
title: 'Generic Tabs List'
edit:
title: 'Edit Generic Tab'
fields:
id: {type: plain}
is_top_tab: {type: checkbox_tag}
visibility: {type: input_tag}
new:
title: 'Add Generic Tab'
编辑。我是symfony的新手,生成的视图是否存储在磁盘中,以便我可以手动编辑html? 1.4并不是最好的版本。