1

我有一个模型:

class MyModel < ActiveRecord::Base
  has_many :other_things
  accepts_nested_attributes_for :other_things
  attr_accessible :other_things_attributes
end

class OtherThing < ActiveRecord::Base
  belongs_to :my_model
  attr_accessible :foo
end

当尝试在 MyModel 实例上更新属性时,Rails/ActiveRecord 尝试将 null 插入 id 列:

my_instance = MyModel.first
my_instance.update_attributes({
  "other_things_attributes"=> {
    "1357758179583" => {"foo"=>"bar", "_destroy"=>"false"},
    "1357758184445" => {"foo"=>"thing", "_destroy"=>"false"}
  }
})

那失败了,有:

  SQL (0.5ms)  INSERT INTO "other_things" ("created_at", "my_model_id", "id", "updated_at", "foo") VALUES ($1, $2, $3, $4, $5)  [["created_at", Wed, 09 Jan 2013 14:30:33 EST -05:00], ["my_model_id", 8761], ["id", nil], ["updated_at", Wed, 09 Jan 2013 14:30:33 EST -05:00], ["foo", "bar"]]
   (0.1ms)  ROLLBACK 
ActiveRecord::StatementInvalid: PGError: ERROR:  null value in column "id" violates not-null constraint
: INSERT INTO "other_things" ("created_at", "my_model_id", "id", "updated_at", "foo") VALUES ($1, $2, $3, $4, $5)

显示 other_things 的架构:

  create_table "other_things", :force => true do |t|
    t.string   "foo"
    t.integer  "my_model_id"
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
  end

这没有显示主键约束(或缺少主键约束),这是根本问题。

4

2 回答 2

1

这是由于不知何故丢失了 other_things 表上的主键规范。我之所以确定这一点,是因为我必须将实例(暂存和生产)分开,其中一个工作但不能工作另一个;在比较了代码和 Rails 相关问题之后,我决定比较 DB 模式,这表明我缺少主键约束。显然,Rails 使用主键来识别正确的列;直观上是显而易见的,但在我看来,如果你还不知道的话。感谢您的评论!

ALTER TABLE ONLY other_things ADD CONSTRAINT other_things_pkey PRIMARY KEY (id);
于 2013-01-09T20:17:38.463 回答
0

有类似的问题,我通过使用 update_columns 而不是 update_attributes 解决了。希望它会帮助某人。:)

于 2014-07-29T13:42:36.583 回答