方法1: 。
toString()を使用する 。オブジェクトを文字列に変換します。
find((docs) => {
let result = docs.map((doc) => {
if(doc.open){
doc.open = doc.open.toString();
}
if(doc.close){
doc.close = doc.close.toString();
}
return doc;
});
//send modified output
res.json(result);
})
次のように出力します:-
/*
[
{
"open": "86.13",
"close": "85.64"
},
]
*/
方法2: 上記のMongodb4.0、
db.myCollection.aggregate([
{$match:{
//...
//...
}},
{ $addFields : {
open: {"$toString" : "$open"},
close : {"$toString" : "$close"},
}},
]);