片刻JS:弃用警告:时刻构造回落到日期。这是不鼓励的,将在即将发布的主要版本中删除

时间:2015-01-03 10:17:25

标签: javascript node.js momentjs

我收到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/1407Deprecation warning: moment construction falls back to js Date,但似乎都没有解决我的问题。

我想知道在这个计算中我应该告诉目前的格式,或者至少如何以正确的格式进行计算,以便警告消失。

提前致谢!

1 个答案:

答案 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");

我希望它可以帮助别人!