ember-moment显示“无效日期”(仅在Safari中,无论是台式机还是移动设备)

{{moment-from-now item.bookingDate interval=1000}}


附言:Firefox,Chrome可以正常使用。

最佳答案

我在模型中有:

bookingDate: DS.attr('date'),

变成

bookingDate: DS.attr('string'),

现在可以...



当我将item.bookingDate作为DS.attr('date')

和item.bookingDate的值为'2016-05-30T09:12:48 + 0200'

{{log 'date: ' item.bookingDate}}

铬:

date: Mon May 30 2016 09:02:48 GMT+0200 (CEST)

火狐

date: Date 2016-05-30T07:02:48.000Z

苹果浏览器

date: – Invalid Date

关于javascript - 瞬间显示“无效日期”(仅适用于Safari,无论是台式机还是移动设备),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39618633/

10-12 13:50