警告:
Deprecation warning: value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.
Arguments:
[0] _isAMomentObject: true, _isUTC: false, _useUTC: false, _l: undefined, _i: Thu Mar 31 2022, _f: undefined, _strict: undefined, _locale: [object Object]
解决办法,在你使用了moment.js的文件里面加一句代码
//去除RFC2822/ISO date formats的警告
moment.suppressDeprecationWarnings = true;