JSON.stringify() 處理 Date

前言

咱們通常在項目中處理 Date 通常會用 moment 插件,或者是使用 Date相關的方法。bash

獲取 YY-MM-DD

方法一

const time = new Date()
const currentTime = `${time.getFullYear()}-${time.getMonth() + 1}-${time.getDay()}`
複製代碼

用上面這種方法還要去補 0 的操做學習

方法二:使用 JSON.stringify

JSON.stringify(new Date()).replace(/T.*|"/g, "") // 2019-07-02 複製代碼

獲取 yyyy-mm-dd HH:mm:ss:fff

JSON.stringify(new Date()).replace(/T|"|\..*/g," ").trim() //2019-07-02 02:39:17 複製代碼

若是你有更好的方式,歡迎留言,一塊兒學習。spa

相關文章
相關標籤/搜索