form_for用于关系表,具有多对多关系的类型

时间:2011-02-02 14:03:53

标签: ruby-on-rails many-to-many form-for fields-for

我的目标是为用户和特定项目显示每个关系的选择框。 需要列出所有用户,但只有项目用户具有某种类型的关系。其他用户在他们的选择框中没有选择。

我有这个型号:

class Project < ActiveRecord::Base
    belongs_to :company
    has_many :tasks, :order => 'state_type_id ASC'

    has_many :project_user_relations
    has_many :users, :through => :project_user_relations

    def t_name
       name.camelcase
    end
end

class User < ActiveRecord::Base
    belongs_to :company

    has_many :tasks , :foreign_key => :assigned_user_id 

    has_many :project_user_relations
    has_many :projects, :through => :project_user_relations

    def full_name
     firstname + ' ' + lastname
    end

    def relation_to(project)
     relation=ProjectUserRelation.find_by_project_id_and_user_id(project.id, id)
     relation ||= relation=ProjectUserRelation.new
    end
end

class ProjectUserRelation < ActiveRecord::Base
    belongs_to :project
    belongs_to :user
    has_one :project_user_relation_type
end

class ProjectUserRelationType < ActiveRecord::Base
    def t_name
        I18n.t("app.projects.users.relation.type."+code)
    end
end

我想使用collection_select创建一个表单来显示所有用户。 我用过代码:

def edit_all
   @project = Project.find(params[:project_id])
   @users = User.all
....

在我的控制器中 路线正常。

在我看来:

<% @users.each do |user| %>
   <%= f.fields_for :users, user do |user_fields| %>
     <tr class="reference" rel="<%=  parent_user_path(user)  %>" >
        <td class="name"><%= link_to user.full_name, parent_user_path(user) %></td>
        <td class="email"><%= mail_to user.email %></td>
        <td class="type">
            <%= user_fields.fields_for user.relation_to @project do |relation_fields| %>
                <%= relation_fields.collection_select :project_user_relation_type, ProjectUserRelationType.all, :id, :t_name, {:include_blank => false, :prompt => t("helpers.select.prompt") } %>
            <%  end %>
         </td>
      </tr>
   <% end %>      
<% end %>     

或测试:

<%= f.fields_for :users, @users do |xuser_fields| %>
    <% logger.debug "#{self.to_s} xuser_fields = #{xuser_fields.object.inspect} ;" %>
    <tr>
       <td><%= xuser_fields.text_field :firstname %></td>
       <td></td>
       <td></td>
       <td></td>
    </tr>
<% end %>

但notnihng woks right

第一个在html中生成错误的名称:

select id =“project_users_project_user_relation_project_user_relation_type”name =“project [users] [project_user_relation] [project_user_relation_type]”

第二个产生错误: #Array的未定义方法`firstname':0x4d03658

你能帮我解决这个问题。

PS:对不起长代码:(


解决方案(可能 - 通过阅读RoR来源解决)

我找到了解决方法。

方法

def name_attributes=(attributes)
    # Process the attributes hash
end
项目模型中的

缺失。

令人难以置信的溶解:]。 在fields_for :: name,@ some_collection之后还有一个确切的语法,其中 name 必须与模型中提到的def的开头名称完全相同。

0 个答案:

没有答案