我用命令创建了一个模型Anonymous
rails g model Anonymous section_id:integer aid:string fake:bool active:bool
但迁移中的表名称称为匿名
class CreateAnonymous < ActiveRecord::Migration def change create_table :anonymous do |t| t.integer :section_id t.string :aid t.bool :fake t.bool :active t.timestamps end end end
我是对的,Anonymous的复数形式也是Anomymous吗? (英语不是我的母语).我如何才能看到Rails为我的模型提供的复数名称?像rake路线?
解决方法
您可以在rails控制台中执行此操作.
$"anonymous".pluralize => "anonymous"
或复数词不同的另一个例子.
$"cookie".pluralize => "cookies"