1

首先,这是我的模型:

class User < ActiveRecord::Base
        has_one :event
    has_one :user_details, :dependent => :destroy
        accepts_nested_attributes_for :user_details, :event
end

class UserDetails < ActiveRecord::Base
    belongs_to :user

    def full_name
        [self.first_name, self.last_name].compact.join(' ')
    end
end

class Event < ActiveRecord::Base
    belongs_to :user
end

我的观点之一是这条线

<%= collection_select(:event, :user_id, User.all, :id, :email) %>

它工作得很好,并在下拉列表中显示所有用户的电子邮件。但我要显示的是下拉列表中的用户全名,它是 user_details 模型的一部分。

我怎样才能做到这一点?

# basically i need to change :email to something like :user_details.full_name, but i'm not sure how.
<%= collection_select(:event, :user_id, User.all, :id, :email)  %>

编辑

我试过了:

# undefined method `full_name' for :user_details:Symbol
<%= collection_select(:event, :user_id, User.all, :id, :user_details.full_name)  %>

# This shows the dropdown with a bunch of UserDetails objects aka #<UserDetails:asfjoisdfa>
<%= collection_select(:event, :user_id, User.all, :id, :user_details)  %>

# undefined method `full_name' for #<User:0x007ff18bf0c470>
<%= collection_select(:event, :user_id, User.all, :id, :full_name)  %>
4

3 回答 3

4

使用以下

<%= collection_select(:event, :user_id, User.all, :id, :full_name)  %>

但是您必须full_name在用户模型上声明该方法。

# user.rb
def full_name
  user_details.full_name
end

或者你可以使用委托

delegate :full_name, to: :user_details
于 2013-03-01T03:59:44.897 回答
-1

尝试:

<%= link_to "#{user.user_details.full_name}", "mailto:#{email}" %>

在你看来,让我知道你是怎么过的……

编辑 在您的 user.rb 文件中定义一个返回 user_details.full_name 的辅助方法并使用它:

<%= collection_select(:event, :user_id, User.all, :id, :*method_returning_user_details.full_name* %>

于 2013-03-01T03:24:10.523 回答
-2

试试看:
这在你看来

更新:

 <% @fullname = User_details.fullname %>

在你的 collection_select

  <%= collection_select(:event, :user_id, User.all, :id, @fullname) %>


并告诉我进展如何。

于 2013-03-01T03:36:34.340 回答