新的formtastic用户在这里。

我有恋爱关系user has_many clients

formtastic中,如果我执行以下操作

f.input :employer


它返回所有雇主对象引用的选择框。我想显示(姓,名)。我敢肯定这很简单,但是我不知道该怎么做。任何帮助。

最佳答案

尝试

f.input :employers, :as => :select, :collection => Employer.find(:all, :order => "last_name ASC")

要么

f.input :employers, :as => :select, :collection => Employer.collect {|e| [e.last_name, e.id] }

关于ruby-on-rails - Rails/Formtastic新手:设置引用的“选择”框的显示字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5374194/

10-09 22:54