我正在尝试使用 simple_form 为“成员”创建一个表单,但在显示关联时遇到了麻烦,它显示的组织如下所示,而不是 id 或 organization_name。我在这里错过了什么吗?我该怎么办?
**组织:0x0000000485cf88
组织:0x0000000485c948
组织:0x0000000485c358**
class Organization < ActiveRecord::Base
has_many :members
attr_accessible :organization_name
end
class Member < ActiveRecord::Base
belongs_to :organization
attr_accessible :active, :email, :first_name, :last_name, :role
end
<%= f.input :first_name %>
<%= f.input :last_name %>
<%= f.input :role %>
<%= f.input :email %>
<%= f.input :active %>
<%= f.association :organization %>
<%= f.button :submit %>
谢谢。
干杯,阿兹伦