MongoMapper 禁用嵌入式 ID

发布于 2024-12-15 07:48:40 字数 481 浏览 1 评论 0原文

是否可以禁用嵌入文档的 _id ?

例如,如果父文档具有嵌入的子文档。如果我不打算从其他地方引用孩子,那么孩子拥有身份证似乎毫无意义。

class Parent
  include MongoMapper::Document
  one :child
  key :name
end

class Child
  include MongoMapper::EmbeddedDocument
  key :name
end

parent = Parent.new(:name => 'parent',
  :child => Child.new(:name => 'child'))

puts parent.to_json

{"id":"4ebeddde51d9e56dcb000006","name":"parent",
"child":{
    "id":"4ebeddde51d9e56dcb000005",
    "name":"child"}}

Is it possible to disable _id for embedded documents?

For example if have a parent with an embedded child document. it seems kind of pointless for the child to have an id if i don't intend to reference the child from anywhere else.

class Parent
  include MongoMapper::Document
  one :child
  key :name
end

class Child
  include MongoMapper::EmbeddedDocument
  key :name
end

parent = Parent.new(:name => 'parent',
  :child => Child.new(:name => 'child'))

puts parent.to_json

{"id":"4ebeddde51d9e56dcb000006","name":"parent",
"child":{
    "id":"4ebeddde51d9e56dcb000005",
    "name":"child"}}

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

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

发布评论

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

评论(1

一瞬间的火花 2024-12-22 07:48:40

我记得有人曾经讨论过要删除嵌入式字段的 _id 字段。最好的办法是自己修补它,然后发送拉取请求。

否则,没有用于删除 id 的配置选项。如果你敢于冒险,你也许可以覆盖 to_mongo 。

I remember there being talk at one point of removing the _id field for embedded one. Best bet would be to patch it yourself and then send a pull request.

Otherwise, there isn't a config option to remove the id. You might be able to over-write to_mongo, if you were adventurous.

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