我搜索了四周,但我找不到任何幫助。Ember日期獲得月份,年份和日期
我想知道是否可以從Ember的日期屬性中獲得Day,Month和Year,以及其他屬性。
例如,在我的車型之一,我有這樣的事情:
createdAt: DS.attr('string', {
defaultValue() {
return new Date();
}
})
返回我這個格式:週二2016年2月23日10點27分10秒GMT-0800(PST)
有沒有一種方法可以從整個日期中獲取「2月」部分?
我知道在純JS中,你可以做一些像var today = new Date.getMonth(),但是這對Ember的日期當然不起作用。
謝謝。
只需將'Date()'分割爲一個字符串並返回數組中的第二項。 – Ellis
var values = this.get('createdAt')。split(''); \t \t var mm = values [1]; \t \t return mm;此代碼在餘燼中返回空白。 – sallyp