升级到Meteor 1.0.3.1后,我现在收到此错误
ReferenceError: moment is not defined
我在这里可以看到它将momentjs升级为更新的版本
momentjs:moment added, version 2.8.4
mrt:moment removed from your project
tsega:bootstrap3-datetimepicker upgraded from 3.1.3_1 to 3.1.3_3
以下是我收到该错误的第一个地方的代码
var today = new moment().format('MM/DD/YYYY');
似乎它应该仍然有用。我试图重新安装它,现在应用程序崩溃了。
还有其他人有这个问题吗?
答案 0 :(得分:2)
我认为Atmosphere上的那一刻实际上高达2.9.0。尝试运行流星更新,或手动删除瞬间包(meteor remove momentjs:moment)并重新添加它。
此外,你不需要使用new moment(),只需要使用moment(),就像这样:
var today = moment().format('MM/DD/YYYY');