gpt4 book ai didi

ruby-on-rails - Rails simple_form 关联

转载 作者:行者123 更新时间:2023-12-04 22:34:38 25 4
gpt4 key购买 nike

我正在尝试使用 simple_form 为“成员”创建一个表单,但在显示关联时遇到问题,其中显示组织如下,而不是 id 或组织名称。我在这里错过了什么吗?我应该怎么做?

**组织: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 %>

谢谢。

干杯,
阿兹伦

最佳答案

看起来像 Organization模型没有以下任何字段:[ :to_label, :name, :title, :to_s ]所以SimpleForm无法检测到用于收集的默认标签和值方法。我认为你应该手动传递它。

关于ruby-on-rails - Rails simple_form 关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10068658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com