upsertでアップデート:express、mongooseでtrueが更新されていませんか?
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);
}
あなたは概要のI /更新コードを挿入しようとしていますが、挿入が動作しているが、そのは
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);
}
});
});
}
を更新していない以下のコードで
オブジェクトを取得するコードの上に実行した場合
ここでは、サマリーコレクションにサマリーオブジェクトを挿入または更新しようとしています。
を更新していないその要約コレクションにMOBILENUMBERはすでに私がそうでなければ、その文書を更新していますexsist場合、私はSummarycollectionでMOBILENUMBERを探しています、私は
そのMOBILENUMBERのための新しいドキュメントを作成しています挿入は機能していますが、もしMOBILENUMBERすでにTHER
私は最初にこのを見てみましょう
可能重複http://stackoverflow.com/questions/16336367/what-is-the-difference-between-synchronous -and-asynchronous-programming-in-node) –
また、非同期モジュールを見てください。 https://github.com/caolan/async。それが役立ちます。 –
'JSON.stringify(obj)'は正しくありません。 – robertklep