admin管理员组文章数量:1341848
I have been trying to save the date from javascript side into MongoDB in ISODate format. But it just saves the date field in my MongoDB document in string format.
Here is the object I'm sending into the MongoDB to be saved as a document in a given collection.
var currentDate = new Date();
postData = {
deviceID: deviceID,
panyID: panyID,
userID: userID,
date: currentDate
};
Everything works fine except the date field is just saved in String format. Couldn't find any SO question which could give a clear answer for this problem as well, if there is a one please direct me to the proper place!
I have been trying to save the date from javascript side into MongoDB in ISODate format. But it just saves the date field in my MongoDB document in string format.
Here is the object I'm sending into the MongoDB to be saved as a document in a given collection.
var currentDate = new Date();
postData = {
deviceID: deviceID,
panyID: panyID,
userID: userID,
date: currentDate
};
Everything works fine except the date field is just saved in String format. Couldn't find any SO question which could give a clear answer for this problem as well, if there is a one please direct me to the proper place!
Share Improve this question asked Feb 21, 2017 at 19:04 Ravindu Nirmal FernandoRavindu Nirmal Fernando 4,8624 gold badges20 silver badges31 bronze badges 1- This may help stackoverflow./questions/21286599/… – chridam Commented Feb 21, 2017 at 19:14
2 Answers
Reset to default 9I solved this by handling this in my Node JS API side. The real problem is I've been sending this to the API as an stringified JSON object. though it was set as a new Date() object it get stringified.
So within my Node JS API side before inserting it into the MongoDB collection I've done this,
var data = req.body.postData;
var date = data[0].date;
var dateObject = new Date(date);
date[0].date = dateObject;
Which did the trick! Thanks for the answers!
You can try this:
var currentDate = new Date();
postData = {
deviceID: deviceID,
panyID: panyID,
userID: userID,
date: currentDate.toISOString()
};
https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
本文标签: JavaScriptHow to save a date in MongoDB document in ISODate formatStack Overflow
版权声明:本文标题:JavaScript - How to save a date in MongoDB document in ISODate format? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743645525a2515443.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论