我收到Deprecation warning: moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.
但我是一个新手,我无法弄清楚如何解决它,所以上面的消息消失了。
我认为问题在于这两行,但我不确定。
var nextMonth = moment(moment(year + "-" + month + "-1")).add(1, "months").format("MM");
var nextYear = moment(moment(year + "-" + month + "-1")).add(1, "months").format("YYYY");
我已经检查了https://github.com/moment/moment/issues/1407和Deprecation warning: moment construction falls back to js Date,但似乎都没有解决我的问题。
我想知道在这个计算中我应该告诉目前的格式,或者至少如何以正确的格式进行计算,以便警告消失。
提前致谢!
答案 0 :(得分:12)
其实我发现了问题。
只需在两个计算中添加新的Date(),它就会再次标准化。
var nextMonth = moment(new Date(year, month - 1, 1)).add(1, "months").format("MM");
var nextYear = moment(new Date(year, month - 1, 1)).add(1, "months").format("YYYY");
我希望它可以帮助别人!