问题
迁移项目时下面的代码编译报错 TypeError: moment().tz is not a function
:
1 | let myDate = moment().tz(undefined, vm.timeZone).format('YYYY-MM-DD'); |
解决办法 1
使用 moment-timezone
代替:
1 | import moment from 'moment-timezone'; |
解决办法 2
1 | import moment from 'moment'; |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 紫升的博客!
评论