Moment.js遇到Deprecation warning: moment construction falls back to js Date 解決方法
參考資料: stackoverflow Joe Wilson的回答
問題
在 Jade
中使用 moment
格式化時間時,報出這個警告。
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.
解決方法
moment()
傳入ISO
標準格式的時間字串:
moment(‘2014-04-23T09:54:51’);
- 附加引數告訴
moment
這個時間字串的格式:
moment(‘Wed, 23 Apr 2014 09:54:51 +0000’, ‘ddd, DD MMM YYYY HH:mm:ss ZZ’);
- 將時間字串轉換為一個 JavaScript 的
Date
物件,在傳入moment
:
moment(new Date(‘Wed, 23 Apr 2014 09:54:51 +0000’));
附加
js 中,生成 ISO 標準格式時間字串方法
var isotime = new Date().toISOString();
相關文章
- Moment.js時間JS
- Moment.js 2.22.2 原始碼JS原始碼
- Moment.js學習(一)原始碼JS原始碼
- 格式化時間 moment.jsJS
- 一個日期處理類庫moment.jsJS
- 使用moment.js輕鬆管理日期和時間JS
- 2024-04-26 moment.js和day.js之用法和優缺點對比JS
- ⏰Day.js 2kB超輕量時間庫 和Moment.js一樣的APIJSAPI
- js基礎–Date.parse()與Date.getTime()方法詳解JS
- 遇到問題的解決方法
- 織夢提示dedecms error warning錯誤的解決方法Error
- Warning: count(): Parameter must be an array or an object that implements Countable in line 302解決方法Object
- 解決IE、firefox瀏覽器下JS的new Date()的值為Invalid Date、NaN-NaN的問題Firefox瀏覽器JSNaN
- [git]warning: LF will be replaced by CRLF in 解決辦法Git
- PHP date() 函式遇到的坑PHP函式
- js轉換/Date(........)/JS
- mysql登入遇到ERROR 1045問題解決方法MySqlError
- ORACLE匯入遇到ORACLE錯誤959解決方法Oracle
- Git:warning: CALF wilL be replaced by LF in xxxx 問題解決Git
- WARNING: Logging before InitGoogleLogging() is written to STDERR 解決辦法Go
- JavaScript Date() 方法JavaScript
- 使用nodeAPI時遇到非同步問題的解決方法API非同步
- GO Modules的理解和遇到的問題解決方法Go
- 部署專案遇到的mysql問題以及解決方法MySql
- js本地物件——Date()JS物件
- Git『Everything up-to-date』問題解決Git
- flutter升級後 執行專案報錯 Warning: Podfile is out of dateFlutter
- warning: LF will be replaced by CRLF in ** 的原因及解決辦法
- 不同Node版本導致的Date建構函式問題及解決方法函式
- Selenium爬蟲遇到超時TimeOut問題的解決方法爬蟲
- [ABC137F] Polynomial Construction 題解Struct
- [AGC029F] Construction of a tree 題解GCStruct
- Date函式方法函式
- Ext.Date 方法
- js報錯:TypeError: Date is not a constructorJSErrorStruct
- BUG: JS 修改Date的TimezoneJS
- 【樹莓派】 Warning from apt-key: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see te DEPRECATION樹莓派APTRust
- 記錄 warning: CRLF will be replaced LF by in XXX 的解決辦法