我在 MongoDB 中创建缝合函数并得到未定义的结果而不是双精度。
我正在使用 MongoDB 数据库开发一个 iOS 应用程序。我正在创建缝合函数,并使用 callFunction(withName:withArgs:_:) 方法。我编写了一个函数来计算平均早晨值。我想将早晨值返回给应用程序。这是下面的代码。
exports = function(DAY,MONTH){
var total = 0.0;
var count = 0.0;
var morning = 0.0;
var collection = context.services.get("mongodb-atlas").db("database_name").collection("collection_name");
var docs = collection.find({month: { $eq: MONTH },
day: { $eq: DAY },
hour: { $gte: 8 },
hour: { $lt: 13 }
}).toArray().then((data) => {
data.forEach((el) =>{
total = total + el.value;
count = count + 1.0;
});
morning = total/count;
console.log("morning");
console.log(morning);
return {morning};
})
.catch((error) => {
console.log(error);
return {morning};
});
};
“““输出”””
早上 869.5729166666666
结果:{ "$undefined": true } 结果 (JavaScript): EJSON.parse('{"$undefined":true}')
"""-输出结束"""
我试图返回双倍的早间值,但它返回 BSONUndefined。当我尝试从 iOS 应用程序获取结果时,我得到 """ morning: BSONUndefined() """ 但在返回语句之前,它会打印早上值以正确拼接控制台。