- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 MongoDB 中有嵌套数组,并尝试更新第三级数组中的 multiply 值:
const query = {'_id': id};
const inc = {'$inc':
{'threads.$[thread].shifts.$[shift].services.$[service].balance': balance}
};
const arrayFilters = {
arrayFilters: [
{'thread.number': threadNumber},
{'shift.number':shiftNumber},
{'service.name': service},
]
};
await Vds.findOneAndUpdate(query, inc, arrayFilters);
在这种情况下,我只有一个字段更新 - 只有 balance
,但我需要更新两个字段,balance
和 lastUpdate
(这是时间平衡更新)。
然后我被迫编写第二个查询:
const query = {'_id': id};
const inc = {'$inc':
{'threads.$[thread].shifts.$[shift].services.$[service].lastUpdate': new Date()}
};
const arrayFilters = {
arrayFilters: [
{'thread.number': threadNumber},
{'shift.number':shiftNumber},
{'service.name': service},
]
};
await Vds.findOneAndUpdate(query, inc, arrayFilters);
如何合并这些查询?像这样的东西:
const inc = {'$inc': [
{'threads.$[thread].shifts.$[shift].services.$[service].balance': balance},
{'threads.$[thread].shifts.$[shift].services.$[service].lastUpdate': new Date()},
]};
我在 the documentation 中看到过但没有找到类似的例子。
UPDATE_1
架构:
new Schema({
... some data
,
threads: [
{
number: {
type: Number,
required: true
},
shifts: [
{
... some data
number: {
type: Number,
required: true
},
services: [
{
name: {
type: String,
required: true
},
lastUpdate: {
type: Date,
default: null
},
balance: {
type: Number,
default: 0
}
... some data
}
]
}
]
}
]
});
UPDATE_2
示例对象:
{
"isCrash": false,
"_id": "5b79857b12f80c07168c88e5",
"user": "5b44df4b46c20409cf67dac5",
"regDate": "2018-08-19T14:58:03.030Z",
"threads": [
{
"shifts": [
{
"services": [
{
"lastUpdate": null,
"isCrash": true,
"balance": 27,
"_id": "5b79857b12f80c07168c8919",
},
{
"lastUpdate": null,
"isCrash": true,
"balance": 0,
"_id": "5b79857b12f80c07168c8918",
},
{
"lastUpdate": null,
"isCrash": true,
"balance": 0,
"_id": "5b79857b12f80c07168c8917",
}
],
"_id": "5b79857b12f80c07168c8916",
"number": 1
},
{
"services": [
{
"lastUpdate": null,
"isCrash": true,
"balance": 0,
"_id": "5b79857b12f80c07168c8915",
},
{
"lastUpdate": null,
"isCrash": true,
"balance": 0,
"_id": "5b79857b12f80c07168c8914",
"name": "VIP-IP"
},
{
"lastUpdate": null,
"isCrash": true,
"balance": 0,
"_id": "5b79857b12f80c07168c8913",
"name": "IP-WEB"
}
],
"_id": "5b79857b12f80c07168c8912",
"number": 2
}
],
"_id": "5b79857b12f80c07168c890d",
"number": 1
}
],
"endDate": "2019-09-18T17:22:57.373Z",
"note": "Test notes",
"__v": 0
}
最佳答案
这两个字段都应该在 $inc
运算符中
const query = { '_id': id }
const update = { '$inc': {
'threads.$[thread].shifts.$[shift].services.$[service].balance': balance,
'threads.$[thread].shifts.$[shift].services.$[service].lastUpdate': new Date()
}}
const arrayFilters = {
arrayFilters: [
{ 'thread.number': threadNumber },
{ 'shift.number' :shiftNumber },
{ 'service.name': service },
]
}
await Vds.findOneAndUpdate(query, update, arrayFilters)
或者如果你想$set
lastUpdate
字段
const query = { '_id': id }
const update = {
'$inc': { 'threads.$[thread].shifts.$[shift].services.$[service].balance': balance },
'$set': { 'threads.$[thread].shifts.$[shift].services.$[service].lastUpdate': new Date() }
}
const arrayFilters = {
arrayFilters: [
{ 'thread.number': threadNumber },
{ 'shift.number' :shiftNumber },
{ 'service.name': service },
]
}
await Vds.findOneAndUpdate(query, update, arrayFilters)
关于javascript - 如何在嵌套数组中实现乘法字段更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51919152/
如果矩阵A在X中,矩阵B在Y中。 进行乘法运算只是 Z = X*Y。正确假设两个数组的大小相同。 如何使用 for 循环计算它? 最佳答案 ja72 的anwser 是错误的,请查看我在其下的评论以了
我有一个 C 程序,它有 n 次乘法(单次乘法和 n 次迭代),我发现另一个逻辑有 n/2 次迭代(1 次乘法 + 2 次加法)。我知道两者都是 O(n) 的复杂性。但就 CPU 周期而言。哪个更快?
我有一个矩阵x: x <- matrix(1:8, nrow = 2, ncol = 4, byrow = 2) # [,1] [,2] [,3] [,4] #[1,] 1 2 3
我有一个矩阵x: x <- matrix(1:8, nrow = 2, ncol = 4, byrow = 2) # [,1] [,2] [,3] [,4] #[1,] 1 2 3
我正在创建一个基于电影 InTime 的 Minecraft 插件,并尝试创建代码,在玩家死亡时玩家将失去 25% 的时间。 当前代码是: String minus = itapi.getTimeSt
我正在尝试将 2 个矩阵与重载的 * 运算符相乘并打印结果。虽然看起来我不能为重载函数提供超过 1 个参数。如何将这两个矩阵传递给重载函数?请在下面查看我的实现。 #include #include
为什么在 Java 中使用 .*?例如 double probability = 1.*count/numdata; 给出相同的输出: double probability = count/numda
如果我尝试将两个值与单位相乘,则会出现意外错误。 $test: 10px; .testing{ width: $test * $test; } result: 100px*px isn't a v
我正在尝试计算库存中所有产品的总值(value)。表中的每种产品都有价格和数量。因此,我需要将每种产品的价格乘以数量,然后将所有这些加在一起以获得所有产品的总计。根据上一个问题,我现在可以使用 MyS
我正在尝试计算库存中所有产品的总值(value)。表中的每种产品都有价格和数量。因此,我需要将每种产品的价格乘以数量,然后将所有这些加在一起以获得所有产品的总计。根据上一个问题,我现在可以使用 MyS
大家好,我有以下代码行 solution first = mylist.remove((int)(Math.random() * mylist)); 这给了我一个错误说明 The operator *
我必须做很多乘法运算。如果我考虑效率,那么我应该使用位运算而不是常规的 * 运算吗?如果有差异如何进行位运算?提前致谢.. 最佳答案 不,您应该使用乘法运算符,让优化编译器决定如何最快地完成它。 您会
两个 n 位数字 A 和 B 的乘法可以理解为移位的总和: (A << i1) + (A << i2) + ... 其中 i1, i2, ... 是 B 中设置为 1 的位数。 现在让我们用 OR
我想使用 cuda 6 进行 bool 乘法,但我无法以正确的方式做到这一点。B 是一个 bool 对称矩阵,我必须进行 B^n bool 乘法。 我的 C++ 代码是: for (m=0; m
我正在编写一个定点类,但遇到了一些问题...乘法、除法部分,我不确定如何模拟。我对部门运算符(operator)进行了非常粗暴的尝试,但我确信这是错误的。到目前为止,它是这样的: class Fixe
我有TABLE_A我需要创建 TABLE_A_FINAL 规则: 在TABLE_A_FINAL中我们有包含 ID_C 的所有可能组合的行如果在 TABLE_A与 ID_C 的组合相同我们乘以 WEIG
这个问题在这里已经有了答案: Simple way to repeat a string (32 个答案) 关闭 6 年前。 我有一个任务是重复字符乘以它例如用户应该写重复输入 3 R 输出的字母和
我最近学习了C++的基础知识。我发现了一些我不明白的东西。这是让我有点困惑的程序。 #include using namespace std; int main()
我有两个列表: list_a = list_b = list(范围(2, 6)) final_list = [] 我想知道如何将两个列表中的所有值相乘。我希望我的 final_list 包含 [2*2
如何修改此代码以适用于任何基数? (二进制、十六进制、基数 10 等) int mult(int a, int b, int base){ if((a<=base)||(b<=base)){
我是一名优秀的程序员,十分优秀!