如何在 Rails 3 控制器生成器中使用 `--helper` 标志?

发布于 2024-10-07 02:36:31 字数 402 浏览 5 评论 0原文

Railsgeneratecontroller 的文档说:

[--helper]                # Indicates when to generate helper
                          # Default: true

现在,它没有指定如何指示值。因此,由于默认值为 true,这意味着排除它不会表示 false,因为…… true 是默认值。所以它必须是 --helper=false--helper false,但我尝试了这两个,它们都导致 错误 false [未找到]< /code>

好消息是它没有生成助手,因为它很混乱,所以我仍然得到了我想要的结果:)

The documentation from rails generate controller says:

[--helper]                # Indicates when to generate helper
                          # Default: true

Now, it doesn't specify how to indicate a value. So, since the default is true, that means that excluding it won't indicate false, because… true is the default. So it must either be --helper=false or --helper false, but I tried both, and they both resulted in error false [not found]

The good news is that it did not generate a helper, because it was confused, so I still got the result I wanted :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别想她 2024-10-14 02:36:31

对于布尔选项,您可以通过在前面添加 --no_ 将其设置为 false

示例:

railsgeneratecontrollerbook--no_helper

For the boolean options you can set it to false by prepending a --no_

Example:

rails generate controller book --no_helper

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文