在我的postgres数据库中,我有字段end_date,数据类型为date NOT NULL。
我的数据库条目是:2015-09-01
。
当我使用环回模型检索数据时,它显示为
Tue Sep 01 2015 05:30:00 GMT+0530 (IST).
loopback是否转换为someformat?实际上它应该是2015-09-01
。
我的模式提取代码:
app.models.xxx.find({}, function(err, res) {
if(err){
} else {
for(var i=0; i <res.length; i++){
console.log("date");
console.log(res[i].end_date);
}
return callback(null, Amount);
}
});
请指导我解决这个问题。提前谢谢。
编辑: 我不确定postgres是否正在转换它。