jquery – has_many:通过可以构建多个实例的nested_form

我的模型中有以下代码

Class Farm < ActiveRecord::Base
  has_many :farm_products,:dependent => :destroy
  has_many :products,:through => :farm_products
  accepts_nested_attributes_for :farm_products
end

class Product < ActiveRecord::Base
  has_many :farm_products,:dependent => :destroy
  has_many :farms,:through => :farm_products
end

class FarmProduct < ActiveRecord::Base
  belongs_to :farm
  belongs_to :product
end

我有一个表单来创建一个新的Farm,我想创建farm_products以及这个表单.我的farm_products表不仅包含外键字段.如何通过Javascript和/或JQuery添加删除嵌套列?

UPD.我通过nested_forms找到了一个很棒的宝石,它正是我想做的!
这是我视图中的代码

= nested_form_for @farm,:html => { :multipart => true } do |f|
  = f.fields_for :farm_products do |fp|
-#fields goes here
     = fp.link_to_remove 'Remove this task'
     = fp.link_to_add "Add a task",:farm_products

但是有一个错误

undefined method `klass' for nil:NilClass

我的人际关系可能有问题,但我找不到问题.

解决方法

link_to_add需要在fields_for块之外,在f对象上调用,不在fp对象上.

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...