前端时间格式2020-02-11T12:24:18.000+0000转化成正常格式

1.公共js

const utils = {
  //data类型  时间格式化成年月日
  rTime: function (date) {
    let json_date = new Date(date).toJSON();
    return new Date(new Date(json_date) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '')
  },
};

export default utils;

2.在页面中引入1的公共js

import utils from "@/assets/js/util.js";

3.使用页面中使用转化时间格式化

 methods: {
    // 时间格式化
    formatTime(time){
      return utils.rTime(time)
    }
}

结构中的写法


          
        

你可能感兴趣的:(前端时间格式2020-02-11T12:24:18.000+0000转化成正常格式)