LOG_ERROR_OR_VERBOSE(result = bar1(...), __LINE__, __FILE__);
我想通过CoreMongooseArray [
0|index | { nCharge: 50,
0|index | _id: 5b603aa7d83da04a6db5751e,
0|index | nState: 1,
0|index | nIndex: 0,
0|index | sType: 'standard',
0|index | sAutoRecharge: true },
0|index | { nCharge: 50,
0|index | _id: 5b603aa7d83da04a6db5751f,
0|index | nState: -1,
0|index | nIndex: 1,
0|index | sType: 'standard',
0|index | sAutoRecharge: true },
0|index | { nCharge: 50,
0|index | _id: 5b603aa7d83da04a6db57520,
0|index | nState: -1,
0|index | nIndex: 2,
0|index | sType: 'standard',
0|index | sAutoRecharge: true }]
cueModel.findOne({
iUserId: req.body.iUserID
}, (err, cue) => {
if (err) throw err;
var cd = cue.aCue;
let c = cd.filter(o => {
return o._id === req.body.cueId
});
return res.status(200).jsonp({
"data": c
});
})
查找特定对象。
id
以上代码段适用于普通数组,但不适用于CoreMongooseArray。
有什么区别