时间戳转换时间格式

<!-- 时间戳 -->
<view>{{create_time0}}</view>
<!-- 转化的时间格式 -->
<view>{{create_time}}</view> 
Page({
  // 注:1:formatDate   2.zeroize   3.通过接口拿到时间戳
  data: {
    create_time: ‘‘,
    pay_time: ‘‘
  },
  onLoad: function (options) {
    var that = this;
    var that = this
    var data = {
      token: "112e309263e37a51a4cd7c98cf681165",
      id: 1,
    }
    console.log(JSON.stringify(data))
    wx.request({
      url: "https://www.xiaojingxiche.com/index.php/Api/Order/orderDetails",
      data: data,
      header: {
        ‘content-type‘: ‘application/x-www-form-urlencoded‘
      },
      method: ‘POST‘,
      success: function (res) {
        console.log(JSON.stringify(res))
        if (res.data.code == 1) {
          that.setData({
            create_time0: res.data.data.create_time,// 获取到的时间戳
            create_time: that.formatDate(res.data.data.create_time), // 获取到的时间戳    引用转换时间格式
          })
        }
      },
    })
  },
  // 时间戳转换格式必备1
  formatDate: function (now) {
    var that = this
    var now = new Date(now * 1000);
    var year = now.getFullYear();
    var month = now.getMonth() + 1;
    var date = now.getDate();
    var hour = now.getHours();
    var minute = now.getMinutes();
    var second = now.getSeconds();
    return year + "-" + that.zeroize(month) + "-" + that.zeroize(date) + " " + that.zeroize(hour) + ":" + that.zeroize(minute) + ":" + that.zeroize(second);
  },
  // 时间戳转换格式必备2
  zeroize: function (num) {
    var that = this
    return (String(num).length == 1 ? ‘0‘ : ‘‘) + num;
  },
})

原文地址:https://www.cnblogs.com/xiaoxiao2017/p/10375814.html

时间: 2024-11-10 12:04:14

时间戳转换时间格式的相关文章

js时间戳转换时间格式

function getLocalTime(time){ if(time > 0){ var dateStr = new Date(time * 1000); var str = "" + dateStr.getFullYear() + "-"; var m = dateStr.getMonth(); m = m < 10 ? "0" + m : m; str += m +"-"; var d = dateStr.

javascript 中的时间戳转换时间 根据时间字符判断星期几 根据开始时间结束时间获取中间间隔时间 来自转发

//时间戳转换时间      function timedat(res){   //res 为传入的时间戳   例:1509091800000 var time = new Date(res); var y = time.getFullYear(); var m = time.getMonth()+1; var d = time.getDate(); return y+'-'+m+'-'+d;    //返回格式  "2017-10-27" 字符串    }; //根据时间判断星期几 

时间戳 日期格式

1.//获取当前系统时间 不要毫秒数 var tmp = Date.parse( new Date() ).toString();   tmp = tmp.substr(0,10); 2.//把时间戳转换成 年-月-日 时:分 格式 function add0(m){return m<10?'0'+m:m }function format(shijianchuo){ //shijianchuo是整数,否则要parseInt转换 var time = new Date(shijianchuo);

angular2在ts中使用transform转换时间格式

摘要:在angular1中我们可以在控制器中像下面那样使用filter: $filter('date')(myDate, 'yyyy-MM-dd'); 但是如何在angular2中在ts中使用自定义pipe呢?下面是一个简单的示例: import { DatePipe } from '@angular/common'; class MyService { constructor(private datePipe: DatePipe) {} transformDate(date) { this.d

js获取当前时间转换时间格式yyyy-mm-dd hh:mm:ss

<!DOCTYPE html> <html> <head> <meta charset="{CHARSET}"> <title></title> <script> // 第一个参数为日期,第二个参数为年月日分割格式 '/'或'-' function format(Date,str){ var obj = { Y: Date.getFullYear(), M: Date.getMonth() + 1, D

java HSSFCell 导入获取时间,通过时间戳转换时间

今天导入Excel的时候,后台java获取cell时间的时候,转换成了数字,该方法是把数字转换成时间类型的字符串 1 public static String getCell(HSSFCell cell) { 2 DecimalFormat df = new DecimalFormat("#"); 3 if (cell == null) 4 return ""; 5 switch (cell.getCellType()) { 6 case HSSFCell.CELL

Long类型的数据转换时间格式方法

function getDate(date) { //得到日期对象 var d=new Date(date); //得到年月日 var year =d.getFullYear(); var month=(d.getMonth()+1); var day= d.getDate(); var rtn=year+"-"+(month<10?"0"+month:month)+"-"+(day<10?"0"+day:day)

jsp页面中如何将时间戳字符串格式化为时间标签

datetag.tld文件: 1 <?xml version="1.0" encoding="ISO-8859-1" ?> 2 <!DOCTYPE taglib 3 PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" 4 "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"> 5

个人喜好的时间戳转换时间js

html的js中写入以下代码,引用 getLocalTime(): function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");} 原文地址:https://www.cnblogs.com/zlicon/p/8428086.html