码迷,mamicode.com
首页 > 其他好文 > 详细

日期转换

时间:2018-05-18 11:34:20      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:fun   date   prot   日期格   ret   int   字符   时间   1.2   

1.2018-08-01转日期格式

Vue.prototype.strToGmt = function (str) {

 let GMT = new Date(str)

 return GMT

}

2.日期格式转2018-08-01

Vue.prototype.gmtToStr = function (date) {
var str = "";
var hour = parseInt(date.getHours());
var minnutes = parseInt(date.getMinutes());
var seconds = parseInt(date.getSeconds());
str += date.getFullYear() + "-";
if (date.getMonth() + 1 < 10) {
  str += ‘0‘ + (date.getMonth() + 1) + "-";
} else {
  str += (date.getMonth() + 1) + "-";
}
if (date.getDate() < 10) {
  str += ‘0‘ + date.getDate() + " ";
} else {
  str += date.getDate() + " ";
}
// str += date.getDate() + " ";
if (hour < 10) {
  str += "0" + hour + ":";
} else {
  str += hour + ":";
}

if (minnutes < 10) {
  str += "0" + minnutes + ":"
} else {
  str += minnutes + ":";
}
if (seconds < 10) {
  str += "0" + seconds
} else {
  str += seconds;
}
  return str
}

3.日期转化为 2017-08-09 不带时分秒

Vue.prototype.getDateToStr = function (date) {
  var str = "";
  str += date.getFullYear() + "-";
  str += (date.getMonth() + 1) + "-";
  str += date.getDate() + " ";
  str += ‘00:00:00‘
  return str
}

4.过滤日期时间(字符串),精确到日

Vue.prototype.filterDateStr = function (str) {
  let newStr = ‘‘;
  newStr = str.substring(0, 10);
  return newStr
}

日期转换

标签:fun   date   prot   日期格   ret   int   字符   时间   1.2   

原文地址:https://www.cnblogs.com/naxiaoming/p/9054710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!