我如何改变我的价值" created_at"数组地图上的属性。
这是我的对象
{ _id: 59661cba54481612500d3043,
author_id: 595e51e0f14cff12e896ead7,
updated_at: 2017-07-12T13:07:52.913Z,
created_at: 2017-12-06T17:00:00.000Z,
trash: false,
tag: [ 595e51e0f14cff12e896ead9, 595e51e0f14cff12e896ead3 ],
category: [ 595e51e0f14cff12e896ead9, 595e51e0f14cff12e896ead3 ],
title: 'test2' }
我希望将值created_at更改为简单日期,例如=" 13-07-2017"
这是我的代码
function article(req, res) {
postArticle.find({}, function(err, articles) {
articles.map(function(article) {
var dateCreate = new Date(article.created_at);
var newDate = dateCreate.getDate()+'-' +(dateCreate.getMonth()+1)+'-' +dateCreate.getFullYear();
article.created_at = newDate;
console.log(dateCreate);
console.log(newDate)
console.log(article)
});
// res.render('admin/article/index', {title: 'Article Posts', posts: article})
// res.json({title: 'article', posts: article})
// console.log(article)
})}
但我的代码无法改变:(
答案 0 :(得分:0)
我在我的项目中编写了一个方法来执行此操作,您可以使用此代码更改日期格式。
function article(req, res) {
postArticle.find({}, function(err, articles) {
articles.map(function(article) {
var dateCreate = formatDate(article.created_at);
var newDate = formatDate(new Date());
article.created_at = newDate;
console.log(dateCreate);
console.log(newDate)
console.log(article)
});
// res.render('admin/article/index', {title: 'Article Posts', posts: article})
// res.json({title: 'article', posts: article})
// console.log(article)
})}
格式化日期的方法:
var formatDate = function (date) {
var myDate = new Date(date);
var y = myDate.getFullYear(),
m = myDate.getMonth() + 1, // january is month 0 in javascript
d = myDate.getDate();
// Get the DD-MM-YYYY format
return formatDigit(d) + "-" + formatDigit(m) + "-" + y;
}
此方法将以两位数返回月份或日期。防爆。如果formatDigit(4) // 04
/**
* Format a month or day in two digit.
*/
var formatDigit = function (val) {
var str = val.toString();
return (str.length < 2) ? "0" + str : str
};
希望它对你有用。