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.jsJS
- Moment.js學習(一)原始碼JS原始碼
- 一個日期處理類庫moment.jsJS
- 使用moment.js輕鬆管理日期和時間JS
- 關於Moment.js(JavaScript 日期處理類庫)的使用JSJavaScript
- ⏰Day.js 2kB超輕量時間庫 和Moment.js一樣的APIJSAPI
- 2024-04-26 moment.js和day.js之用法和優缺點對比JS
- JSON.stringify轉換Date不正確的解決方法JSON
- js基礎–Date.parse()與Date.getTime()方法詳解JS
- 遇到問題的解決方法
- WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED解決方法REMIDE
- netbakcup備份時遇到 status 6: the backup failed to back up the requested files 問題解決AI
- 織夢提示dedecms error warning錯誤的解決方法Error
- 今天遇到的問題與解決方法
- 解決MYSQL工具mysqldump 遇到 Out of memory 方法MySql
- RAC遇到GC Buffer Busy的解決方法2GC
- RAC遇到GC Buffer Busy的解決方法1GC
- 安裝sql server遇到問題解決方法SQLServer
- JS DateJS
- nodejs 近期所遇到的問題及解決NodeJS
- window下的git [GIT] warning: LF will be replaced by CRLF問題解決方法Git
- ORACLE匯入遇到ORACLE錯誤959解決方法Oracle
- exp 時遇到密碼有特殊字元(!@#)解決方法密碼字元
- 解決警告“ld: warning: directory not found for option”
- Warning: $HADOOP_HOME is deprecated. hadoop解決方法補充版Hadoop
- PHP date() 函式遇到的坑PHP函式
- 部署專案遇到的mysql問題以及解決方法MySql
- GO Modules的理解和遇到的問題解決方法Go
- 使用nodeAPI時遇到非同步問題的解決方法API非同步
- mysql登入遇到ERROR 1045問題解決方法MySqlError
- [git]warning: LF will be replaced by CRLF in 解決辦法Git
- git warning: LF will be replaced by CRLF in 解決辦法Git
- Warning: count(): Parameter must be an array or an object that implements Countable in line 302解決方法Object
- JavaScript Date() 方法JavaScript
- js date物件的獲取時間日期常用方法JS物件
- js轉換/Date(........)/JS