- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
var logs = [{
mobilenumber: '1',
ref: 3,
points: 1000,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}, {
mobilenumber: '1',
ref: 6,
points: 2000,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}, {
mobilenumber: '2',
ref: 7,
points: 2600,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}, {
mobilenumber: '2',
ref: 15,
points: -1500,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}, {
mobilenumber: '10',
ref: 15,
points: 800,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}, {
mobilenumber: '11',
ref: 15,
points: 110,
ctype: 'mycredit',
entry: 'sdfsdf',
entry: 0
}];
var summary = [];
var positive = 0,
negative = 0,
total = 0,
count = 0;
for (var i = 0; i < logs.length; i++) {
count = 0;
positive = 0;
negative = 0;
total = 0;
for (var j = i; j < logs.length; j++) {
if (logs[i].mobilenumber === logs[j].mobilenumber) {
if (logs[j].points < 0) {
negative += logs[j].points;
} else if (logs[j].points >= 0) {
positive += logs[j].points;
}
total += logs[j].points;
count++;
}
}
i += count - 1;
var obj = {
mobilenumber: logs[i].mobilenumber,
positivepoint: positive,
negativepoint: negative,
balancepoints: total
}
summary.push(obj);
}
如果你运行上面的代码,你会得到 Summary 对象
在下面的代码中,我试图插入/更新代码,但插入工作正常,但没有更新
var promiseArr = [];
for(var i = 0; i<summary.length;i++) {
promiseArr.push(saveOrUpdate(summary[i].mobilenumber, summary[i]));
}
function saveOrUpdate (phone, dataToUpdate) {
return new Promise((resolve, reject) => {
//Update document if found or insert otherwise
// upsert:true -> If set to true, creates a new document when no document matches the query criteria
Summary.update({"mobilenumber": phone},
dataToUpdate,
{upsert: true},
function(err, raw){
if (err)
{
console.log(err);
}else
{
console.log(raw);
}
});
});
}
我在这里尝试在摘要集合中插入或更新摘要对象。
如果手机号码已经存在,我将在 Summarycollection 中搜索手机号码,否则我将更新该文档,否则我将为该手机号码创建新文档
插入正在工作,但如果手机号码已经在摘要集合中,则它不会更新
帮帮我,我三天以来一直在努力
我正在使用 mongoose 和数据库 mlab 版本 3.2.11
最佳答案
所以先看看这个。 What is the difference between synchronous and asynchronous programming (in node.js) .永远不要在不完全了解发生了什么的情况下在同一个地方使用同步和异步操作。
让我们尝试使用异步方法重写您的代码。首先让我们创建promise方法
function saveOrUpdate (phone, dataToUpdate) {
return new Promise((resolve, reject) => {
//Update document if found or insert otherwise
// upsert:true -> If set to true, creates a new document when no document matches the query criteria
Summary.updateOne({"mobilenumber": phone},
{$set : dataToUpdate},
{upsert: true},
function(err){
err ? reject(err) : resolve();
});
});
}
现在只需做出一系列 promise
var promiseArr = [];
for(var i = 0; i<summary.length;i++) {
promiseArr.push(saveOrUpdate(summary[i].mobilenumber, summary[i]));
}
使用 Promise.All 运行 promise 并捕获结果。
Promise.all(promiseArr)
.then((res) => console.log("All done"))
.catch(err => console.log(err));
Mongo 更新文档 https://docs.mongodb.com/manual/reference/method/db.collection.update/Mongo 更新一个文档 https://docs.mongodb.com/manual/reference/method/db.collection.updateOne/
promise https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise
如果您使用 Mongoose 作为驱动程序。阅读文档以了解如何通过查询更新文档。 http://mongoosejs.com/docs/2.7.x/docs/updating-documents.html
Mongo DB native 驱动程序允许您使用所有新的 mongo 功能和方法。 http://mongodb.github.io/node-mongodb-native/2.2/api/Collection.html
希望这会有所帮助。
关于javascript - 用 upsert : true is not updating in express, mongoose 更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43938499/
这个问题在这里已经有了答案: Why in Python does "0, 0 == (0, 0)" equal "(0, False)"? (7 个回答) 去年关闭。 代码片段 1: a = Tru
Integer i = 127; Integer j = 127; System.out.println(i == j); System.out.println(i.equals(j)); Integ
我试图用 Python 进行类似下面的代码的比较,但对产生的输出感到困惑。 谁能解释为什么输出是这样的? >>> True, True == True, True (True, True, True)
我们的下拉值是动态的 010100。 你能帮我将这些值转换为 true、false 吗? Offer的值是10100,Reject的值是10111。所以这些需要转换成 10100 = true,fal
我正在测试,如果用户在页面顶部显示一种货币“EUR”和另一种货币“GBP”,那么我期望包含文本“EUR”和页面下方还存在另一个包含文本“GBP”的链接。它包含在一个名为 "nav-tabs au-ta
如何检查数组的所有元素是真值还是假值。 因为以下内容似乎没有做到这一点:_.all([true, true, true], true); 它返回:false? 最佳答案 您应该重新阅读_.every(
C#:我有一个如下所示的字符串变量: string a = "(true and true) or (true or false)"; 这可以是任何东西,它可以变得更复杂,比如: string b
ruby : true == true == true syntax error, unexpected tEQ 对比JavaScript: true == true == true // => tr
这个问题已经有答案了: Equality of truthy and falsy values (JavaScript) (3 个回答) Which equals operator (== vs ==
为什么 R 中的 TRUE == "TRUE" 是 TRUE? R 中是否有与 === 等效的内容? 更新: 这些都返回FALSE: TRUE == "True" TRUE == "true" TRU
简单的查询,可能不可能,但我知道那里有一些聪明的人:) 给定一个 bool 参数,我希望定义我的 where 子句来限制特定列的输出 - 或不执行任何操作。 因此,给定参数@bit = 1,结果将是:
编写 Excel 公式时,将值设置为 true、“true”还是 true() 是否有区别? 换句话来说,以下哪一个是最好的?还是要看具体情况? if (A1 = 1, true, false) if
如果我们评估这个:TRUE AND TRUE,为什么会这样? 'yes' : 'no' 等于 TRUE 但不等于 yes 何时评估:(TRUE AND TRUE) ? 'yes' : 'no' 等于
这个问题在这里已经有了答案: Behaviour of and operator in javascript [duplicate] (1 个回答) 关闭 7 年前。 如题所说,我不太明白为什么(t
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
我有一个模型,我有: ipv4_address = models.IPAddressField(verbose_name=_('ipv4 address'), blank=True, null=Tru
False in [True,True] False in pd.Series([True,True]) 第一行代码返回False第二行代码返回 True! 我想我一定是做错了什么或者遗漏了什么。当我
我可以在 Coq 中证明以下内容吗? Lemma bool_uip (H1 : true = true): H1 = eq_refl true. 即true = true 的所有证明都相同吗? 例如
如果我的理解是正确的,他们做的事情完全一样。为什么有人会使用“for”变体?仅仅是味道吗? 编辑:我想我也在考虑 for (;;)。 最佳答案 for (;;) 通常用于防止编译器警告: while(
我是一名优秀的程序员,十分优秀!