1

これは、私が回答した以前のリクエストに続きます。しかし、理解できない次の問題は、パラメーターが 1 つのレコードを報告するときに、グーグル/SO 検索で update_all を使用する必要があることを示唆するメッセージが表示される理由です。

has_many/belongs_to ビルド関連付け - パラメータの挿入ステートメントが空白なのはなぜですか?

私の更新コントローラーの方法は次のとおりです。

  def update
    @role = Role.find(params[:id])
    logger.debug "@role: id[#{params[:id]}], #{@role}, #{@role.inspect}, #{@role.to_s}"
    @permission = @role.permissions(params[:permission])
    logger.debug "@permission: #{@permission.inspect}"

    respond_to do |format|
      if @role.update_attributes(params[:role]) && @permission.update_attributes(params[:permission])
        format.html { redirect_to @role, notice: 'Role was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @role.errors, status: :unprocessable_entity }
      end
    end
  end

次のエラー メッセージが表示されます。

 NoMethodError in RolesController#update

undefined method `update_attributes' for #<ActiveRecord::Relation:0x007fb2116b5178>

Rails.root: /Users/railsdev/Development/railsprojects/Genie/BitBucket-Repos/Genie-v3-3
Application Trace | Framework Trace | Full Trace

app/controllers/roles_controller.rb:75:in `block in update'
app/controllers/roles_controller.rb:74:in `update'

Request

Parameters:

{"utf8"=>"✓",
 "_method"=>"put",
 "authenticity_token"=>"3uZ47itmgzUSs83Iq9+2saJn6Y9+Y9tlSDgaRskh9pw=",
 "role"=>{"description"=>"T1"},
 "permission"=>{"subject_class"=>"User"},
 "commit"=>"Update Role",
 "id"=>"55"}

グーグル検索と SO 検索により、update_all代わりに [ ] を使用する必要があることがわかります。しかし、レコードが 1 つしかないのに、なぜこれが当てはまるのでしょうか?

これが私のコンソール出力です。

Started PUT "/roles/55" for 127.0.0.1 at 2012-10-01 22:12:16 +0100
Processing by RolesController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"3uZ47itmgzUSs83Iq9+2saJn6Y9+Y9tlSDgaRskh9pw=", "role"=>{"description"=>"T1"}, "permission"=>{"subject_class"=>"User"}, "commit"=>"Update Role", "id"=>"55"}
  User Load (0.2ms)  SELECT "users".* FROM "users" WHERE "users"."remember_token" = 'gn668LQGNlLl6HiwPf8DRQ' LIMIT 1
  Role Load (0.1ms)  SELECT "roles".* FROM "roles" INNER JOIN "assignments" ON "roles"."id" = "assignments"."role_id" WHERE "assignments"."user_id" = 13
  Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT 1  [["id", "55"]]
@role: id[55], #<Role:0x007fb2137e3200>, #<Role id: 55, description: "T1", created_at: "2012-10-01 21:11:43", updated_at: "2012-10-01 21:11:43">, #<Role:0x007fb2137e3200>
  Permission Load (0.1ms)  SELECT "permissions".* FROM "permissions" WHERE "permissions"."role_id" = 55
@permission: [#<Permission id: 32, role_id: 55, subject_class: "Diagnosis", action: nil, subject_id: nil, created_at: "2012-10-01 21:11:43", updated_at: "2012-10-01 21:11:43">]
  Permission Load (0.1ms)  SELECT "permissions".* FROM "permissions" WHERE "permissions"."role_id" = 55
Completed 500 Internal Server Error in 5ms

NoMethodError (undefined method `update_attributes' for #<ActiveRecord::Relation:0x007fb2116b5178>):
  app/controllers/roles_controller.rb:75:in `block in update'
  app/controllers/roles_controller.rb:74:in `update'

デバッグを支援するために、次のログを記録しました。

@role: id[55], #<Role:0x007fb2137e3200>, #<Role id: 55, description: "T1", created_at: "2012-10-01 21:11:43", updated_at: "2012-10-01 21:11:43">, #<Role:0x007fb2137e3200>

@permission: [#<Permission id: 32, role_id: 55, subject_class: "Diagnosis", action: nil, subject_id: nil, created_at: "2012-10-01 21:11:43", updated_at: "2012-10-01 21:11:43">]

配列として「ラップ」されているためですか?[@permission logger.debug 呼び出しの出力]。これは、update_all を使用する必要があるという指標ですか?


フロートはこれよりもはるかに高くなる可能性があります - 例を試してください:

    float x = 1000000000000000000000000000000000000.0f; 
    System.out.println(x);
    System.out.println(x*x);

出力:

1.0E36
Infinity

だから、何か他のことが間違っています。非常に大きな数値を使用すると、Infinitynotになることに注意してくださいNaN

あなたのコードは、うっかり 0 を 0 で割っていませんか? あなたが実行している実際の計算は何ですか?

NaN の意味に関する情報については、この質問も参照してください。

4

1 に答える 1

1

はい、#where()複数のレコードを表すことができる ActiveRecord::Relation を返します。@role.permissions(params[:permission]).first.update(...)単一の行のみを更新するつもりなので、update_all の代わりに使用したい場合があります。

また、権限/ロール モデルを実装していることにも気付きました。これは何度も再実装されているので、この目的のための宝石を提案してもいいですか? カンカン/カンタンゴのようなものでしょうか。

于 2012-10-10T20:53:07.550 に答える