- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章mongoDB使用投影剔除‘额外’字段的操作过程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
。
。
实际开发过程中,为便于开发人员定位问题,常存在多个额外的字段。例如:增加createdAt、updatedAt字段以查看数据的创建和更改时间。而对于客户端而言,无需知道其存在。针对以上情况,本文详细介绍了“额外”字段的用途以及处理过程.
技术栈 。
。
。
。
1.1 "额外"是指与业务无关 。
mongodb中,collection中存储的字段并不仅仅有业务字段。有些情况下,会存储多余的字段,以便于开发人员定位问题、扩展集合等.
额外的含义是指 和业务无关、和开发相关的字段。这些字段不需要被用户所了解,但是在开发过程中是至关重要的.
。
1.2 产生原因 。
产生额外字段的原因是多种多样的.
。
。
额外字段的产生原因有很多,可以以此进行分类.
。
2.1 _id、__v字段 。
产生原因:以mongoose为例,通过schema->model->entity向mongodb中插入数据时,该数据会默认的增加_id、__v字段.
_id字段是由mongodb默认生成的,用于文档的唯一索引。类型是ObjectID。mongoDB文档定义如下:
“ MongoDB creates a unique index on the _id field during the creation of a collection. The _id index prevents clients from inserting two documents with the same value for the _id field. You cannot drop this index on the _id field.< 。
__v字段是由mongoose首次创建时默认生成,表示该条doc的内部版本号.
“ The versionKey is a property set on each document when first created by Mongoose. This keys value contains the internal revision of the document. The versionKey option is a string that represents the path to use for versioning. The default is __v. 。
。
2.2 createdAt、updatedAt字段 。
createdAt、updatedAt字段是通过timestamp选项指定的,类型为Date.
“ The timestamps option tells mongoose to assign createdAt and updatedAt fields to your schema. The type assigned is Date.By default, the names of the fields are createdAt and updatedAt. Customize the field names by setting timestamps.createdAt and timestamps.updatedAt. 。
。
2.3 is_deleted字段 。
is_deleted字段是实现软删除一种常用的方式。在实际业务中,出于各种原因(如删除后用户要求再次恢复等),往往采用的软删除,而非物理删除.
因此,is_deleted字段保存当前doc的状态。is_deleted字段为true时,表示当前记录有效。is_deleted字段为false时,表示当前记录已被删除.
。
。
。
3.1 额外字段生成 。
_id字段是必选项;__v、createdAt、updatedAt字段是可配置的;status字段直接加在s对应的chema中。相关的schema代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
isdeleted: {
type: String,
default
:
true
,
enum
: [
true
,
false
],
},
id: {
type: String,
index:
true
,
unqiue:
true
,
default
:uuid.v4(),
}},
{timestamps:{createdAt:
'docCreatedAt'
,updatedAt:
"docUpdatedAt"
},versionKey:
false
});
|
通过配置schema中的timestamps选项,可以将createdAt和updatedAt字段加入到doc中。在创建和更新doc时,这两个字段无需传入,就会自动变化.
。
3.2 额外字段清理 。
通过3.1可以明确的产生若干额外字段,但是客户端调用接口并返回时,这些字段是无需得知的。因此需对额外字段进行清理。清理方式分为投影和过滤.
以query、update接口为例。其中query接口用于:1、查询指定字段 2、查询全部字段 3、分页排序查询。update接口用于更新并返回更新后的数据.
根据是否需要指定字段、和collection中有无内嵌的情况划分,一共有4类。接着针对这4种情况进行分析.
1、有指定字段、无内嵌 。
2、无指定字段、无内嵌 。
3、有指定字段、有内嵌 。
4、无指定字段、有内嵌 。
。
3.2.1 投影 。
有指定字段是指在查询时指定查询字段,而无需全部返回。mongo中实现指定的方式是投影 (project) 。mongo官方文档中定义如下:
“ The $project takes a document that can specify the inclusion of fields, the suppression of the _id field, the addition of new fields, and the resetting of the values of existing fields. Alternatively, you may specify the exclusion of fields. 。
$project可以做3件事
1.指定包含的字段、禁止_id字段、添加新字段 。
2.重置已存在字段的值 。
3.指定排除的字段 。
我们只需关注事情1、事情3。接着查看mongoose中对project的说明:
“ When using string syntax, prefixing a path with - will flag that path as excluded. When a path does not have the - prefix, it is included. Lastly, if a path is prefixed with +, it forces inclusion of the path, which is useful for paths excluded at the schema level. 。
A projection must be either inclusive or exclusive. In other words, you must either list the fields to include (which excludes all others), or list the fields to exclude (which implies all other fields are included). The _id field is the only exception because MongoDB includes it by default. 。
注意:此处指query "projection" 。
mongoose表明:投影要么是全包含,要么是全剔除。不允许包含和剔除同时存在。但由于 。
_id是MongoDB默认包含的,因此_id是个例外.
select project投影语句组装代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* 添加通用筛选条件
* @param {*} stat 已装配的筛选语句
* @param {*} collection collectionName
* @return {*} 组装完成的语句
*/
function addCommonSelectCond(stat,collection)
{
if
(typeof(stat)!=
"object"
)
return
;
stat[
"_id"
] =
0
;
stat[
"__v"
] =
0
;
stat[
"status"
] =
0
;
stat[
"docCreatedAt"
] =
0
;
stat[
"docUpdatedAt"
] =
0
;
var embeddedRes = hasEmbedded(collection);
if
(embeddedRes[
"isEmbedded"
])
{
for
(var item of embeddedRes[
"embeddedSchema"
])
{
stat[item+
"._id"
] =
0
;
stat[item+
".__v"
] =
0
;
stat[item+
".status"
] =
0
;
stat[item+
".docCreatedAt"
] =
0
;
stat[item+
".docUpdatedAt"
] =
0
;
}
}
return
stat;
}
|
。
3.2.2 过滤 。
通过findOneAndupdate、insert、query等返回的doc对象中(已经过lean或者toObject处理),是数据库中真实状态。因此需要对产生的doc进行过滤,包括doc过滤和内嵌文档过滤.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/**
* 处理自身及内嵌的表
* @param {*} collection 查询的表
* @param {*} doc 已查询出的结果
* @returns doc 清理后的结果
*/
static
clearDoc(collection,doc){
if
(doc === undefined || doc ===
null
|| typeof doc !=
"object"
)
return
null
;
doc =
this
.clearExtraField(doc);
var res = hasEmbedded(collection);
if
(res[
"isEmbedded"
])
{
let arr = res[
"embeddedSchema"
];
for
(var item of arr){
if
(doc[item])
doc[item] =
this
.clearArray(doc[item]);
}
}
return
doc;
}
static
clearExtraField(doc){
if
(doc ===
null
|| typeof doc !=
"object"
)
return
;
var del = delete doc[
"docCreatedAt"
]&&
delete doc[
"docUpdatedAt"
]&&
delete doc[
"_id"
]&&
delete doc[
"__v"
]&&
delete doc[
"status"
];
if
(!del)
return
new
Error(
"删除额外字段出错"
);
return
doc;
}
static
clearArray(arr)
{
if
(!Array.isArray(arr))
return
;
var clearRes =
new
Array();
for
(var item of arr){
clearRes.push(
this
.clearExtraField(item));
}
return
clearRes;
}
|
细心的读者已经发现了,投影和过滤的字段内容都是额外字段。那什么情况下使用投影,什么情况下使用过滤呢?
关于这个问题,笔者的建议是如果不能确保额外字段被剔除掉,那就采取双重认证:查询前使用投影,查询后使用过滤.
。
4 总结 。
本文介绍了实际业务中往往会产生额外字段。而在mongoDB中,"消除"额外字段的手段主要是投影、过滤.
以使用频率最高的查询接口为例,整理如下:
。
指定选项 | 内嵌选项 | 查询前投影 | 查询后过滤 |
---|---|---|---|
有指定 | 无内嵌 | × | √ |
有指定 | 有内嵌 | × | √ |
无指定 | 无内嵌 | √ | × |
无指定 | 有内嵌 | √ | × |
。
因此,笔者建议无论schema中是否配置了options,在查询时组装投影语句,查询后进行结果过滤。这样保证万无一失, 。
额外字段才不会漏到客户端**.
到此这篇关于mongoDB使用投影剔除‘额外'字段的文章就介绍到这了,更多相关mongoDB用投影剔除额外字段内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://juejin.cn/post/6915767241640247309 。
最后此篇关于mongoDB使用投影剔除‘额外’字段的操作过程的文章就讲到这里了,如果你想了解更多关于mongoDB使用投影剔除‘额外’字段的操作过程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我已经在 kubernetes 中部署了一个 3 pod mongodb statefulset,并且我正在尝试使用新的 mongodb+srv 连接字符串 (mongodb 3.6) 连接到具有 S
我已经创建了 MongoDB Atlas 帐户,并尝试连接。但出现以下错误。 MongoDB 连接错误 MongoNetworkError: 首次连接时无法连接到服务器 [cluster0-shard
我正在使用 Node-WebKit 创建桌面应用程序。该应用程序基本上是创建文档(员工日常工作的详细信息),任何注册用户都可以对这些文档发表评论。我正在创建的文档将被分成几个部分。用户将对特定部分发表
我正在尝试使用官方网站上的安装程序在我的本地机器上安装 mongo DB。但是我不断收到这条消息,有人可以帮忙吗? 我试过提供的解决方案 here但没有帮助。 最佳答案 我建议执行以下操作: 按 Wi
我对 MongoDB 和 MongoDB Compass 非常陌生。 我的客户集合中有大约 1000 条记录。如何通过 MongoDB 指南针一次删除所有记录。 非常感谢, 最佳答案 您可以使用 Mo
当我尝试在我的 Ubuntu 机器中安装 mongodb 时,apt-get 会显示以下选项 mongodb mongodb-clients mongodb-dev mongodb-server 谁能
如何将 Robomongo(或任何其他 mongodb 客户端)连接到由本地 Meteor 应用程序创建的 mongodb 实例? 最佳答案 确保 Meteor 正在本地主机上运行。打开终端窗口并运行
我需要在 MongoDB 中生成一个简单的频率表。假设我在名为 books 的集合中有以下文档。 { "_id": 1, genre: [ "Fantasy", "Crime"
我如何在 mongos mapreduce 中指定一个条件,就像我们在 mongos group 函数中所做的那样。 我的数据是这样的 {lid:1000, age:23}, {lid:3000, a
我的 mongodb 数据库文档中有几个 ID。我需要通过脚本在这些 ID 上创建索引,这样我就不必一次又一次地运行 ensureIndex 命令。 db.getCollection("element
在我的数据库中,每个包含项目的文档中都有一个嵌套的元素数组,格式如下: elements:[ { "elem_id": 12, items: [ {"i_id": 1
我正在构建一个应用程序,其中用户可以位于不同的时区,并且我运行的查询对他们的时区很敏感。 我遇到的问题是 MongoDB 似乎在查询时忽略了时区! 这是日期字段“2019-09-29T23:52:13
我正在研究使用 mongodb 进行分片,我有以下结构: 1 个 Mongod 到我的 ConfigServer,在 ReplicaSet 中只有 1 个成员 2 个分片,每个分片在 ReplicaS
我正在尝试获取一个 mongoDB 对象,例如 Friend1 包含另一个 mongoDB 对象 Friend2,该对象又包含第一个对象 Friend1本质上使它成为一个循环对象引用。 要么这样,要么
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
Mongo 版本 5.0.2。 Ubuntu 20.0 我在本地主机中启用了 MongoDB 连接的安全性。 我正在尝试通过以下命令使用身份验证详细信息连接我的本地主机 MongoDBmongo ad
我即将将分片的 MongoDB 环境从 2.0.7 升级到 2.2.9,最终我想升级到 2.4.9,但显然我需要通过 2.2 来完成。 2.2 的发行说明声明配置服务器应该首先升级其二进制文件,然后是
目前,我无法在我的虚拟 Ubuntu 机器上远程连接 mongodb 服务器。我无法使用在我的 Windows PC 上运行的 Robomongo 客户端连接,该 PC 也运行 vm。 这是两台电脑的
我创建了一个免费的 mongodb 集群。我创建了一个用户,设置了与 mongodb compass 的连接,复制了连接字符串,然后打开了我的 mongodb compass。将复制的字符串粘贴到那里
我使用 java 代码创建了 mongo 数据库集合索引 dbCollection.createIndex("accountNumber"); 当我看到索引使用 db.accounts.getInde
我是一名优秀的程序员,十分优秀!