2

我看过RailsCasts#302,它描述了使用 best_in_place gem 进行就地编辑。那里的性别选项 Ryan 使用 show.html.erb 中的数组并使其成为下拉框(请参阅他明确定义数组的性别部分)。

<p>
  <b>Gender:</b>
  <%= best_in_place @user, :gender, type: :select, collection: [["Male", "Male"], ["Female", "Female"], ["", "Unspecified"]] %>
</p>

但我想要的是我在模型本身内部定义了一个数组,例如:(因为我的数组元素并不简单且数量少)

例如:

用户.rb

class User < ActiveRecord::Base
  def authencity_types
    ['Asian', 'Latin-Hispanic', 'Caucasian']
  end
end

我将如何使用best_in_place语法将此数组元素用作下拉列表。

PS:我确实尝试过这样的事情

<% @users.each do |user| %>
  <%= best_in_place user, :authencity, type: :select, :collection => User::authencity_types  %>
<% end %>

但它说未定义的方法 authencity_types

4

1 回答 1

4

您正在 User 模型上定义一个实例方法,所以试试这个。

<% @users.each do |user| %>
  <%= best_in_place user, :authencity, type: :select, :collection => user.authencity_types  %>
<% end %>

或者,您可以将其定义为这样的类方法。

class User < ActiveRecord::Base
  def self.authencity_types
    ['Asian', 'Latin-Hispanic', 'Caucasian']
  end
end

或者,如果不需要动态,您可能需要考虑使用常量。

于 2012-07-28T04:56:10.117 回答