通过连接表使用嵌套资源的RESTful form_for

时间:2011-09-03 19:17:46

标签: ruby-on-rails rest form-for nested-resources jointable

我正在尝试构建一个应用程序,其中有一个“作业”模型,可以与“标签”模型相关联,其中使用连接表跟踪关联。我想要找到它可以在表单中使用基于资源的form_for添加复选框,以允许用户选择与作业关联的标签。标签列表由管理员设置,因此他们不会创建新标签,而是创建关联。我无法弄清楚如何做到这一点。大多数示例使用博客场景,其中一篇文章有​​很多评论,他们正在创建新评论,这与我正在尝试做的完全不同。

型号:

class Job < ActiveRecord::Base
    has_and_belongs_to_many :tags, :join_table => 'j_map_tags', :class_name => 'Tag', :foreign_key => 'job_id', :association_foreign_key => 'tag_id'
end

class Tag < ActiveRecord::Base
    has_and_belongs_to_many :jobs, :join_table => 'j_map_tags', :class_name => 'Job'
end

class JMapTag < ActiveRecord::Base
    belongs_to :job
    belongs_to :tag
end

加入表迁移:

class CreateJMapTags < ActiveRecord::Migration
    def self.up
        create_table :j_map_tags, :id => false do |t|
            t.column    :job_id,    :integer
            t.column    :tag_id,    :integer
        end
    end

    def self.down
        drop_table :j_map_tags
    end
end

路线:

resources :jobs, :module => 'manager', :constraints => lambda { |request| request.xhr? } do
    resources :tags
end

ERB:

<%= form_for [Job.new], :remote => true do |form| %>
    ...
    <% form.label  ???????? %>
    <% form.check_box  ???????? %>
    ...
<% end %>

这是否可以通过基于资源的form_for实现?我无法找到涉及此类资源关系的任何示例。

1 个答案:

答案 0 :(得分:0)

我认为这就是您所需要的:HABTM Checkboxes