Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 id 而不是 _id 发回给客户端。如果可能的话,我想在 mongo 方面这样做。find 语句有没有办法拒绝字段的名称。
聚合框架允许您重命名字段,但普通find不允许。您需要在客户端代码中进行修复。
find
许多驱动程序(和框架)可以在客户端自动执行此操作(因此,它不会在数据库上发生)。根据您使用的编程语言,这可能是最有效的选择。