【发布时间】:2016-05-04 20:48:47
【问题描述】:
我得到了错误: 模板助手中的异常:TypeError: time.tz is not a function
代码:
Template.registerHelper( 'timeAgo', function ( timestamp ) {
if ( timestamp ) {
let time = moment( timestamp ),
let timezone = Session.get("timezone");
return time.tz(timezone).fromNow();
}
});
我已经安装了 momentjs:moment,它工作正常。
问题出在 timezone 包上:我已经安装了 aldeed:moment-timezone 包,然后我尝试使用 mrt:moment-timezone 包但没有;它也不起作用。
【问题讨论】: