代码之家  ›  专栏  ›  技术社区  ›  tirenweb

使用原则覆盖已经生成的表单:生成:表单?

  •  2
  • tirenweb  · 技术社区  · 9 年前

    运行此操作时:

    php app/console doctrine:generate:form ProjectFrontendBundle:Car

    如果表单类型类已经存在,我将在下面收到此消息。

    无法生成CarType表单类,因为它已存在于 ~/workspace/certific/src/Project/FronendBundle/Form/CarType.php 文件

    那么,是否可以覆盖已生成的表单?

    1 回复  |  直到 9 年前
        1
  •  1
  •   Darragh Enright    9 年前

    快速浏览 app/console doctrine:generate:form -h 不幸的是:

    Options:
      -h, --help               Display this help message
      -q, --quiet              Do not output any message
      -V, --version            Display this application version
          --ansi               Force ANSI output
          --no-ansi            Disable ANSI output
      -n, --no-interaction     Do not ask any interactive question
      -s, --shell              Launch the shell.
          --process-isolation  Launch commands from shell as a separate process.
      -e, --env=ENV            The Environment name. [default: "dev"]
          --no-debug           Switches off debug mode.
      -v|vv|vvv, --verbose     Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
    

    我猜你只是删除了现有的类型类(或 mv 如果你感到谨慎而不使用vcs)。