TypeError: moment().tz is not a function(TypeError: moment().tz 不是函数)
问题描述
使用 jasmine 进行测试时,出现此错误.
When testing using jasmine, I am getting this error.
TypeError:moment.tz 不是函数
我尝试测试的代码是
let myDate = moment().tz(undefined, vm.timeZone).format('YYYY-MM-DD');
推荐答案
修复
如果您使用的是 Node.js,您可能会不小心使用
Fix
If you're using Node.js, you may accidentally be using
const moment = require('moment');
//moment
而不是
const moment = require('moment-timezone');
//moment-timezone
另外,请确保您已经安装了 moment-timezone
Also, make sure you have installed moment-timezone with
npm install moment-timezone --save
使用 require('moment')
安装 moment,然后决定 npm install moment-timezone
,然后忘记更新 require
.
The bug of requiring moment without timezones could occur by installing moment with require('moment')
, later deciding to npm install moment-timezone
, and then forgetting to update the require
.
这篇关于TypeError: moment().tz 不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:TypeError: moment().tz 不是函数


- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01