将 ISODate 更改为字符串日期 ExpressJS

Changing ISODate into String Date ExpressJS

我如何更改数组映射上的值 "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)
})}

但我的代码无法更改 :(

我在我的项目中写了一个方法来做到这一点,你可以使用这个代码来改变日期的格式。

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;
}

此方法将 return 两位数的月或日。前任。如果 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
    };

希望对你有用。