0

所以我有两个模型TopicClient。一个客户has_and_belongs_to_many :topics和一个主题has_and_belongs_to_many :clients

基本上,我想要发生的是......当有人去我的Topic#index,取决于他们如何到达那里(即通过client/:id/topics或只是/topics),我希望 create & new 的行为有所不同。即在/topics,它只是创建一个主题。在client/:id/topics它创建一个主题并将其分配给该客户端。

我的路线如下所示:

  resources :topics
  resources :clients do
    resources :topics
  end

我的主题控制器如下所示:

  def new
        if params[:client_id]
            @client = Client.find(params[:client_id])
            @topic = @client.topics.build
        else
            @topic = Topic.new
        end

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @topic }
    end
  end

  def create
        if params[:client_id]
            @client = Client.find(params[:client_id])
            @topic = @client.topics.build(params[:topic])
        else
        @topic = Topic.new(params[:topic])
        end

    respond_to do |format|
      if @topic.save
        format.html { redirect_to @topic, notice: 'Topic was successfully created.' }
        format.json { render json: @topic, status: :created, location: @topic }
      else
        format.html { render action: "new" }
        format.json { render json: @topic.errors, status: :unprocessable_entity }
      end
    end
  end

我的views/topics/_form.html.erb样子是这样的:

<%= form_for([@client, @topic]) do |f| %>
...
<% end %>

但是,当我执行此操作时client/:id/topics,日志如下所示:

Started GET "/clients/1/topics/new" for 127.0.0.1 at 2012-09-10 14:33:06 -0500
Processing by TopicsController#new as HTML
  Parameters: {"client_id"=>"1"}
  Client Load (0.2ms)  SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1  [["id", "1"]]
  Rendered topics/_form.html.erb (3.6ms)
  Rendered topics/new.html.erb within layouts/application (4.7ms)
  User Load (0.3ms)  SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
   (0.2ms)  SELECT COUNT(*) FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = 1 AND (((roles.name = 'admin') AND (roles.resource_type IS NULL) AND (roles.resource_id IS NULL)))
  Rendered layouts/_navigation.html.erb (7.2ms)
  Rendered layouts/_messages.html.erb (0.1ms)
Completed 200 OK in 61ms (Views: 57.0ms | ActiveRecord: 0.7ms)

看起来不错……这里的一切似乎都井然有序。但POST事情似乎不起作用:

Started POST "/clients/1/topics" for 127.0.0.1 at 2012-09-10 14:33:13 -0500
Processing by TopicsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"J172LuZQPv8=", "topic"=>{"name"=>"AMZN"}, "commit"=>"Create Topic", "client_id"=>"1"}
  Client Load (0.2ms)  SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1  [["id", "1"]]
   (0.1ms)  begin transaction
  SQL (186.2ms)  INSERT INTO "topics" ("created_at", "name", "updated_at") VALUES (?, ?, ?)  [["created_at", Mon, 10 Sep 2012 19:33:13 UTC +00:00], ["name", "AMZN"], ["updated_at", Mon, 10 Sep 2012 19:33:13 UTC +00:00]]
   (4.6ms)  commit transaction
Redirected to http://localhost:3000/topics/4
Completed 302 Found in 198ms (ActiveRecord: 191.1ms)

您会注意到没有将新主题分配给客户端。

我错过了什么?

谢谢!

编辑 1

在我的创建操作中添加了 puts 调试语句,这是我在执行 POST 操作后得到的结果 - 这表明正在获取params[:client_id]而不仅仅是params[:id]

Served asset /application.js - 304 Not Modified (1ms)
**************************************************
This is the params[:client_id] => {3}
**************************************************
This is the params[:id] => {}


Started POST "/clients/3/topics" for 127.0.0.1 at 2012-09-10 15:06:31 -0500
Processing by TopicsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"J172LuZQc5NYoiMSzDD3oY9vGmxxCX0OdxcGm4GSPv8=", "topic"=>{"name"=>"TEST2"}, "commit"=>"Create Topic", "client_id"=>"3"}
  Client Load (0.2ms)  SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1  [["id", "3"]]
   (0.1ms)  begin transaction
  SQL (0.7ms)  INSERT INTO "topics" ("created_at", "name", "updated_at") VALUES (?, ?, ?)  [["created_at", Mon, 10 Sep 2012 20:06:31 UTC +00:00], ["name", "TEST2"], ["updated_at", Mon, 10 Sep 2012 20:06:31 UTC +00:00]]
   (3.3ms)  commit transaction
Redirected to http://localhost:3000/topics/6
Completed 302 Found in 11ms (ActiveRecord: 4.3ms)

编辑2:

所以我尝试了其他似乎可行的方法,但我很想知道为什么上述方法不起作用。

如果,在我的Topic#create我只是这样做:

@client = Client.find(params[:client_id])
@topic = Topic.new(params[:topic])
@client.topics << @topic

它工作正常。

但是,再次......我很想知道为什么.buildHABTM 或在这种情况下不适用。

4

2 回答 2

1

我认为问题在于params[:client_id]它可能是params[:id]

您能否puts在创建操作的 if else 块中添加一条语句,然后查看当您点击页面时显示的是哪个(创建主题)

编辑

您需要在模型中包含accepts_nested_attributes_for以支持嵌套对象属性的动态构建。

参考这个

于 2012-09-10T19:58:32.130 回答
0

@client在我的对象上构建完成后,我似乎必须显式调用 save 。

否则,ActiveRecord 不会保存事务并在 join_table 中插入新记录。

于 2012-09-10T20:22:19.300 回答