原则:构建 --表单 --模型不生成特定的过滤器表单



我有一个模式。包含各种表的Yml文件。对于单个表,原则:build命令不会构建一个formfilter类

模式。表的Yml定义是

InactiveReason:
  actAs:
    Sortable: ~
  columns:
    id: { type: integer(4), notnull: true, unique: true, primary: true, autoincrement: true }
    name: { type: string(100), notnull: true }

模型和表单类都生成,但是我不能让它生成格式过滤器类(InactiveReasonFormFilter和BaseInactiveReasonFormFilter)

我试过在schema中移动定义。Yml,这也没有帮助。我是不是用了什么专用钥匙?

您没有指定生成过滤器类的构建任务

doctrine:build --forms --model

添加——filters选项或用——all-classes选项替换所有选项

doctrine:build --forms --model --filters
doctrine:build --all-classes

相关内容

  • 没有找到相关文章

最新更新