首页 > 其他分享 >返回年月日

返回年月日

时间:2024-09-10 09:51:43浏览次数:13  
标签:返回 getSeconds getMinutes getHours let time 年月日 getMonth

 //返回年月日
    getYTime(time = new Date()) {
      let year = time.getFullYear();
      let month =
        time.getMonth() + 1 > 9 ?
        time.getMonth() + 1 :
        "0" + (time.getMonth() + 1);
      let day = time.getDate() > 9 ? time.getDate() : "0" + time.getDate();
      let hours = time.getHours() > 9 ? time.getHours() : "0" + time.getHours();
      let minute =
        time.getMinutes() > 9 ? time.getMinutes() : "0" + time.getMinutes();
      let second =
        time.getSeconds() > 9 ? time.getSeconds() : "0" + time.getSeconds();
      return (
        year +
        "-" +
        month +
        "-" +
        day
      );
    },
    //返回年月日星期
    getTimeData(time = new Date()) {
      let weeks = '日一二三四五六'.split("")
      let year = time.getFullYear();
      let month =
        time.getMonth() + 1 > 9 ?
        time.getMonth() + 1 :
        "0" + (time.getMonth() + 1);
      let day = time.getDate() > 9 ? time.getDate() : "0" + time.getDate();
      let week = weeks[time.getDay()];
      let hours = time.getHours() > 9 ? time.getHours() : "0" + time.getHours();
      let minute =
        time.getMinutes() > 9 ? time.getMinutes() : "0" + time.getMinutes();
      let second =
        time.getSeconds() > 9 ? time.getSeconds() : "0" + time.getSeconds();
      return {
        year,
        month,
        day,
        hours,
        minute,
        second,
        week
      }
    },
    //返回小时分秒
    getHTime(time = new Date()){
      let year = time.getFullYear();
      let month =
        time.getMonth() + 1 > 9 ?
        time.getMonth() + 1 :
        "0" + (time.getMonth() + 1);
      let day = time.getDate() > 9 ? time.getDate() : "0" + time.getDate();
      let hours = time.getHours() > 9 ? time.getHours() : "0" + time.getHours();
      let minute =
        time.getMinutes() > 9 ? time.getMinutes() : "0" + time.getMinutes();
      let second =
        time.getSeconds() > 9 ? time.getSeconds() : "0" + time.getSeconds();
      return (
        hours +
        " : " +
        minute +
        " : " +
        second
      );
    },

标签:返回,getSeconds,getMinutes,getHours,let,time,年月日,getMonth
From: https://www.cnblogs.com/baozhengrui/p/18405851

相关文章

  • 获取rem像素转换比例 flag为true返回数字
    //获取rem像素转换比例flag为true返回数字exportfunctiongetRem(px,flag){px=(px||0)+''if(!(px.indexOf('%')!==-1||px.indexOf('rem')!==-1)){px=(Number(px)/40)+'rem'}if(flag){returnN......
  • shell请求api,获取json返回值,做判断
    1.shell如何请求api,获取到json返回值:https://www.cnblogs.com/pingguomang/p/184050112.shell如果解析json数据: https://www.cnblogs.com/pingguomang/p/184049963.shell的条件判断:#定义用户的iduser_id="199348"#1.调用api--获取用户数据详细信息response=$(curl......
  • shell 请求http get api,获取返回值
    在Shell脚本中,你可以使用curl或wget来发送HTTPGET请求并获取返回值。以下是使用curl的示例:#!/bin/bash#APIURL无参数时:URL="http://example.com/api/data"#APIURL有参数时:id=119URL="http://example.com/api/data?id="+${id}#发送GET请求并存储响应response=$(cu......
  • 阿里巴巴中国站商品搜索API返回值解析与实战
    阿里巴巴中国站(现通常指1688.com)是一个大型的B2B电商平台,为企业和商家提供商品交易、供应链服务等。然而,需要注意的是,阿里巴巴官方并不直接提供公开的API接口给所有开发者进行商品搜索等高级功能,这些服务通常需要通过官方合作伙伴计划或特定服务接口来获取。不过,为了回答你的问题,我......
  • 在 Qt5 中创建一个 HTTP 接口以返回屏幕截图
    在Qt5中创建一个HTTP接口以返回MainWindow的屏幕截图在Qt5中,可以通过使用QTcpServer和QTcpSocket来创建一个简单的HTTP服务器。通过这种方式,我们可以实现一个HTTP接口,当访问该接口时,会返回当前MainWindow窗口的屏幕截图。以下是实现这一功能的详细步骤与相关知......
  • MySQL 函数查询返回NULL
    createtableuser(idbigintprimarykeyauto_increment,ageint);gorm使用函数查询时,通过IFNULL来确保查询不到记录时有默认值。max函数selectmax(age)fromuser;selectIFNULL(max(age),0)fromuser;sum函数count函数默认是0。......