美文网首页Ruby on Rails
2018-02-02 生成不为复数的controller

2018-02-02 生成不为复数的controller

作者: 由宇婷 | 来源:发表于2018-02-03 00:23 被阅读4次

原帖https://liamseanbrady.wordpress.com/2015/02/06/adding-custom-inflections-in-rails/

有的时候我们自动生成的controller不需要使用复数形式,这时候可在生成controller以前,更改如下文件

config/initializers/inflections.rb

加入如下语句(inflect blabla 的)

ActiveSupport::Inflector.inflections(:en) do |inflect|
  inflect.uncountable %w( 你的类名单数 )
end

之后再生成controller

介样,你的controller就是单数的了!

相关文章

网友评论

    本文标题:2018-02-02 生成不为复数的controller

    本文链接:https://www.haomeiwen.com/subject/dopyzxtx.html