咱們通常在項目中處理 Date 通常會用 moment 插件,或者是使用 Date相關的方法。bash
const time = new Date()
const currentTime = `${time.getFullYear()}-${time.getMonth() + 1}-${time.getDay()}`
複製代碼
用上面這種方法還要去補 0 的操做學習
JSON.stringify(new Date()).replace(/T.*|"/g, "") // 2019-07-02 複製代碼
JSON.stringify(new Date()).replace(/T|"|\..*/g," ").trim() //2019-07-02 02:39:17 複製代碼
若是你有更好的方式,歡迎留言,一塊兒學習。spa