如何将对象“id”存储在迁移文件中?

发布于 2024-11-18 05:30:24 字数 406 浏览 0 评论 0原文

我正在使用 Ruby on Rails 3.0.7 和 MySQL 5.1。我想强制将对象 id 存储在迁移文件中。例如我有这个:

User.create!(
  :name => 'Test name'
)

但我想做这样的事情:

User.create!(
  :id   => '12345', # Force to store the object data with id '12345'
  :name => 'Test name'
)

注意:上面的代码不会强制数据库中的id值。

可能吗?如果是这样,怎么办?

I'm using Ruby on Rails 3.0.7 and MySQL 5.1. I'd like to force to store the object id in a migration file. For example I have this:

User.create!(
  :name => 'Test name'
)

but I would like to do something like this:

User.create!(
  :id   => '12345', # Force to store the object data with id '12345'
  :name => 'Test name'
)

Note: the above code will not force the id value in the database.

Is it possible? If so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

め七分饶幸 2024-11-25 05:30:24

您无法批量分配 id 等受限字段。但您可以单独设置它们:

user = User.new(:name => 'Test name')
user.id = 12345
user.save!

User.create!(:name => 'Test name') do |user|
  user.id = 12345
end

You can't mass assign the restricted fields like id. But you can individually set them:

user = User.new(:name => 'Test name')
user.id = 12345
user.save!

OR

User.create!(:name => 'Test name') do |user|
  user.id = 12345
end
小ぇ时光︴ 2024-11-25 05:30:24

您确实可以批量分配受保护的字段。以下是具体操作方法。在您的模型中定义以下内容:

def attributes_protected_by_default
  default = [ self.class.inheritance_column ]
end

您在这里所做的是重写基本方法:

# The primary key and inheritance column can never be set by mass-assignment for security reasons.
def self.attributes_protected_by_default
  default = [ primary_key, inheritance_column ]
  default << 'id' unless primary_key.eql? 'id'
  default
end

...仅包含 inheritance_column ,不包括 idprimary_key< /代码> 列。此时,您现在可以为该模型批量分配 ID。

You can indeed mass-assign protected fields. Here's how to do it. In your model define the following:

def attributes_protected_by_default
  default = [ self.class.inheritance_column ]
end

What you are doing here is overriding the base method:

# The primary key and inheritance column can never be set by mass-assignment for security reasons.
def self.attributes_protected_by_default
  default = [ primary_key, inheritance_column ]
  default << 'id' unless primary_key.eql? 'id'
  default
end

...to include only the inheritance_column excluding the id, or primary_key column. At this point you can now mass-assign the ID for that model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文