收藏
回答

数据库查询时间转换的问题。

向数据库查询信息,其中返回给小程序的时间字段: 是这样。

数据库中:

js 中没有SimpleDateFormat 怎么处理转换。

大佬解答下。😮😀


回答关注问题邀请回答
收藏

3 个回答

  • 2018-06-19
    /** 扩展Date对象方法:格式化日期 */
    Date.prototype.format = function (fmt) {
      var o = {
        "M+": this.getMonth() + 1, //月份
        "d+": this.getDate(), //日
        "h+": this.getHours(), //小时
        "m+": this.getMinutes(), //分
        "s+": this.getSeconds(), //秒
        "q+": Math.floor((this.getMonth() + 3) / 3), //季度
        "S": this.getMilliseconds() //毫秒
      };
      if (!fmt) fmt = "yyyy-MM-dd hh:mm:ss";
      if (/(y+)/.test(fmt)) {
        fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
      }
      for (var k in o) {
        if (new RegExp("(" + k + ")").test(fmt)) {
          fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
        }
      }
      return fmt;
    };

    使用方法:

    new Date(返回的时间).format();

    如果不传参数默认格式化成:yyyy-MM-dd hh:mm:ss格式


    像这种问题一搜一大把,有提问这个时间早就研究出来了。

    2018-06-19
    有用 2
    回复 1
    • 波波先生
      波波先生
      2018-06-19

      var d = new Date(res[0].DepartTime);

      var youwant=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate()+" "+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds();

      console.log(youwant)


      2018-06-19
      1
      回复
  • 小肥羊🍊
    小肥羊🍊
    2019-12-28

    过来学习,谢谢分享。

    2019-12-28
    有用 1
    回复 1
    • 凡开亚
      凡开亚
      2020-05-12
      过来学习加一
      2020-05-12
      回复
  • 不知道
    不知道
    2018-06-19

    有Date类呀   你可以自己写转换或者去百度一个

    2018-06-19
    有用
    回复
登录 后发表内容