如何在不需要参数的情况下创建自己的 Rails 生成器?

发布于 2024-10-14 19:07:24 字数 387 浏览 3 评论 0原文

看来我一直在想办法,这样我的生成器就不需要参数了。例如,我的生成器代码是这样的:

class MyGenerator < Rails::Generators::NamedBase
  source_root File.expand_path('../templates', __FILE__)

  def generate_stylesheet
     copy_file "my.css", "public/stylesheets/my.css"    
  end
end

但是当我执行rails g时,我的rails总是要求额外的参数。你能告诉我如何让它不需要额外的参数吗?

谢谢。

It seems that I am stuck figuring out so that my generator doesn't need an argument. So for instance my generator code is this:

class MyGenerator < Rails::Generators::NamedBase
  source_root File.expand_path('../templates', __FILE__)

  def generate_stylesheet
     copy_file "my.css", "public/stylesheets/my.css"    
  end
end

But when I do rails g my rails always asks for an extra argument. Can you show me how so it doesn't need an extra argument?

Thanks.

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

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

发布评论

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

评论(1

温柔女人霸气范 2024-10-21 19:07:24

您必须使用 class MyGenerator class MyGenerator class MyGenerator class MyGenerator class MyGenerator < Rails::Generators::Base 而不是 class MyGenerator Rails::Generators::NamedBase

You have to use class MyGenerator < Rails::Generators::Base instead of class MyGenerator < Rails::Generators::NamedBase

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