Rails 部分模板生成器
Rails partial generator of template
在 rails 中有没有办法让我只能部分生成模板?
例如在我的generators/generatorName/templates文件夹中,有template1.html.erb和template2.html.erb个文件
当我 运行 命令
在控制台中
rails g 生成器名称
它只会默认生成模板1,html.erb。
如果我想添加另一个模板,我该怎么做?有办法吗?
听起来您正在寻找自定义生成器。您需要 create/copy 调用第二个文件。
在 rails 中有没有办法让我只能部分生成模板?
例如在我的generators/generatorName/templates文件夹中,有template1.html.erb和template2.html.erb个文件
当我 运行 命令
在控制台中rails g 生成器名称
它只会默认生成模板1,html.erb。
如果我想添加另一个模板,我该怎么做?有办法吗?
听起来您正在寻找自定义生成器。您需要 create/copy 调用第二个文件。