2017-08-03 36 views
0

我有收集訂單,我想要月份年份的變量「createdAt」;我在應用程序中使用momentsjs。我該如何取月份變量的值CreatedAt

Orders = new Mongo.Collection('orders'); 

Orders.attachSchema(new SimpleSchema({ 
    'taxtotal':{type:Number}, 
    'subtotal':{type:Number}, 



    createdAt:{ 
    type: Date, 
    autoValue: function() { 
     return new Date() 
    } 
    }, 

    createdBy: { 
    type: String, 
    autoValue: function() { 
     return this.userId 
    } 
    } 

})); 
+1

您到目前爲止嘗試過什麼? – VincenzoC

+0

你正在尋找標籤來顯示給用戶或你可以編程的值? – zim

+0

你好,我需要:https://stackoverflow.com/questions/45464098/meteor-js-how-to-sum-records-per-month-of-the-same-collection/45464409#45464409 –

回答

0

您可以嘗試使用瞬間格式化日期和路過一家「月」或「年」對format()

例子:

var month = moment(createdAt).format('M'); 
var year = moment(createdAt).format('YYYY'); 

或者你可以使用內置的功能檢索這些值DOCS

var month = moment(createdAt).month(); 
var year = moment(createdAt).year(); 
+0

非常感謝,這就是全部! –

相關問題