如何在 Mongoid 中更改文档的 _type?

发布于 2024-10-22 02:58:57 字数 437 浏览 1 评论 0原文

我在 Rails 应用程序中有以下模型:

class User
  include Mongoid::Document
  ...
end

class Admin < User
  ...
end

我得到一个用户:

u = User.find(some_key)

并尝试更改 _type:

u._type  # => "User"
u._type = "Admin"
u.save
u._type  # => "Admin"

但如果我重新加载该对象,它仍然是一个用户:

u.reload
u._type = "User"

更改此设置的正确方法是什么?

I have the following models inside a Rails application:

class User
  include Mongoid::Document
  ...
end

class Admin < User
  ...
end

I get a user:

u = User.find(some_key)

And try to change the _type:

u._type  # => "User"
u._type = "Admin"
u.save
u._type  # => "Admin"

But if I reload the object it's still a user:

u.reload
u._type = "User"

What is the correct way to change this?

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

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

发布评论

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

评论(2

命比纸薄 2024-10-29 02:58:57

您还可以使用 Model#update_attribute 来保留 mongoid:

user.update_attribute(:_type, "Admin")

you could also use Model#update_attribute to stay with mongoid:

user.update_attribute(:_type, "Admin")
聆听风音 2024-10-29 02:58:57

最终通过使用原始 MongoDB 查询解决了这个问题:

users.update( { :"_id" => user.id }, { :"$set" => { :"_type" => "Admin" }})

Ended up solving it by using a raw MongoDB query:

users.update( { :"_id" => user.id }, { :"$set" => { :"_type" => "Admin" }})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文