我有一个表单,用户可以使用 ajax 上传资产。这会创建许多 Asset 对象,然后我想在创建 Post 对象时将它们关联起来。我有一个名为asset_ids 的form_field,我在创建资产ID 时对其进行更新。当我创建 Post 对象并使用 assign_attributes 填充其数据时,无论有多少个 id,都只会创建一个关联。
资产模型:
class Asset < ActiveRecord::Base
attr_accessible :caption, :image
belongs_to :post
has_attached_file :image, :styles => { :large => "600x600>", :medium => "300x300>", :thumb => "100x100>" }
end
岗位型号:
class Post < ActiveRecord::Base
attr_accessible :content, :post_date, :status, :title, :tag_list, :asset_ids, :as => :admin
has_many :assets, :dependent => :destroy
has_and_belongs_to_many :tags
validates :content, :post_date, :title, :presence => true
end
发布数据哈希的示例:
{"title"=>"Test post", "status"=>"true", "post_date"=>"01/02/2013", "content"=>" Some content", "tag_list"=>"", "asset_ids"=>"97,102"}
当我像这样分配属性时,上面的示例仅将一个资产(id 97)分配给新帖子:
@post = Post.new
@post.assign_attributes params[:post], :as => :admin