map.resources在edge rails中的变化

阅读更多
  map.resources :account_types, :has_many => :accounts

是简短写法,等价于
map.resources :account_types do |account_type|
account_type.resources :accounts
end


且慢,有一点变化要注意:

最后生成的是 account_type_accouts_path 而不是 account_path, 如果要还原成1.2的样子,需要这么写:

map.resources :account_types do |account_type|
account_type.resources :accounts, :name_prefix => nil
end


你可能感兴趣的:(Rails)