0

好吧,我有三个模型……一个用户、一个集合和一个设计。

我的模特 =

用户模型

 `has_many :collections
  has_many :designs, :through => :collections`

收集模型

`belongs_to :user
 has_many: designs`

设计模型

`belongs_to :user
 belongs_to :collection`

好吧,当我尝试创建一个集合时一切正常。所有参数都保存到数据库中,包括使用 (current_user) 关联的 user_id。

当我尝试创建一个设计(属于一个集合)时,我的问题就出现了。当我创建一个新设计时,user_id 没有被存储

这是我的新方法和创建方法的设计控制器

设计控制器:

`def new
   if signed_in? && current_user == @collection.user
     @user = current_user
     @collection = @user.collections.find(params[:collection_id])
     @design = @collection.designs.new
   else
     flash[:error] = "That's not your collection"
     redirect_to root_url
  end
end`

'def create
   @collection = current_user.collections.find(params[:collection_id])
   @design = @collection.designs.new(design_params)

   respond_to do |format|
     if @design.save
       format.html { redirect_to collection_designs_path(@collection), notice: 'Design was successfully created.' }
      format.json { redirect_to collection_designs_path(@collection) }
    else
      format.html { render 'designs/new' }
      format.json { render json: @design.errors, status: :unprocessable_entity }
    end
  end
end`

这是我使用的表格(减去字段)

`<%= form_for [@collection, @design], :html => { :multipart => true, :class => "auth" } do |f| %>
   <fields are here>
 <% end %>`

只是为了澄清一下,我可以提交表单并且表单可以工作,并且设计是使用附加的 collection_id 创建的,但不幸的是 user_id 没有与之关联......

4

1 回答 1

1

您尚未将任何用户对象与设计相关联。试试这是设计控制器。在创造行动中,

设计控制器

def create
   @collection = current_user.collections.find(params[:collection_id])
   @design = @collection.designs.new(design_params)
   @design.user = current_user

   respond_to do |format|
     if @design.save
       format.html { redirect_to collection_designs_path(@collection), notice: 'Design was successfully created.' }
      format.json { redirect_to collection_designs_path(@collection) }
    else
      format.html { render 'designs/new' }
      format.json { render json: @design.errors, status: :unprocessable_entity }
    end
  end
end`
于 2013-09-06T02:46:38.287 回答