我有两个模型:
邮政:
class Post < ActiveRecord::Base
has_many :exes
end
可执行程序:
class Exe < ActiveRecord::Base
belongs_to :post
end
我的看法http://localhost:3000/posts/index
是:
NameError in Posts#index
uninitialized constant Post::Ex
它说只是Ex
出于某种原因。
ruby 行的代码抱怨对<% post.exes.each do |exe| %>
我来说是正确的。
所以我真的不知道为什么会这样。如果还检查了以下内容,因为我认为这可能是原因,但没有:
2.0.0-p247 :004 > ActiveSupport::Inflector.pluralize('Exe')
=> "Exes"
2.0.0-p247 :005 > ActiveSupport::Inflector.singularize('Exe')
=> "Exe"
提前致谢!