date-fns 格式化日期

2019-12-06 10:45:34

参考地址 使用TypeScript日期工具: date-fns 格式化日期

使用TypeScript日期工具: date-fns 格式化日期

安装

引入格式化日期

格式化

封装方法

安装

npm install date-fns --save


// or with yarn

yarn add date-fns


// or with bower

bower install date-fns


引入格式化日期

import * as format from 'date-fns/format';

import * as zh_cn from 'date-fns/locale/zh_cn/index.js';

1

2

格式化

通常情况下只需要直接使用format方法

函数传入三个参数, 第一个参数为必传参数,需要格式化的时间,可以为date, string, number, 第二个参数为日期格式,为可选参数,第三个是可选参数


const date = new Date();

     console.log(date)           //Tue Feb 19 2019 15:57:07 GMT+0800 (中国标准时间)

     console.log(format(date, 'HH:mm')); // 15:57

     console.log(format(date, 'YYYY-MM-DD HH:mm:ss')); //2019-02-19 15:57:07

     console.log(format(date, 'YYYY-MM-DD')); //2019-02-19

    // 不传第二个格式参数的时候.

     console.log(format(date));    //2019-02-19T15:57:07.401+08:00

1

2

3

4

5

6

7

封装方法

为了更适应项目的要求在这里稍作更改

根据需求可以自己更改格式

第一个参数为传入的时间,必传参数,可以为date, string, number, 第二个format为日期格式


private dateFormat = (date: Date, format: string) => {

       return format(date, format, { locale: zh_cn });

   }

1

2

3

使用: 一般用在ajax 向服务的发送param时,格式化获取到的日期时间


startTime = this.dateFormat(startTime, 'YYYY-MM-DD HH:mm:ss')


  • 2019-09-05 20:54:21

    在Android 中使用FFmpeg命令

    到这里就可以运行FFmpeg命令了。一直我也是这样使用,但是我在做这个项目Cut的时候发现连续调用多次FFmpeg命令会报错(在项目需要,先改变分镜头的速度,再合成视频)。 为什么会这样的呢?

  • 2019-09-06 10:30:20

    ffmpeg错误码

    AVERROR_BSF_NOT_FOUND = -1179861752 AVERROR_BUG = -558323010 AVERROR_DECODER_NOT_FOUND = -1128613112 AVERROR_DEMUXER_NOT_FOUND = -1296385272 AVERROR_ENCODER_NOT_FOUND = -1129203192 AVERROR_EOF = -541478725 AVERROR_EXIT = -1414092869 AVERROR_FILTER_NOT_FOUND = -1279870712 AVERROR_INVALIDDATA = -1094995529 AVERROR_MUXER_NOT_FOUND = -1481985528 AVERROR_OPTION_NOT_FOUND = -1414549496 AVERROR_PATCHWELCOME = -1163346256 AVERROR_PROTOCOL_NOT_FOUND = -1330794744 AVERROR_STREAM_NOT_FOUND = -1381258232 AVERROR_BUG2 = -541545794 AVERROR_UNKNOWN = -1313558101

  • 2019-09-08 09:05:54

    MyBatis Generator 插件的拓展插件包

    应该说使用Mybatis就一定离不开MyBatis Generator这款代码生成插件,而这款插件自身还提供了插件拓展功能用于强化插件本身,官方已经提供了一些拓展插件,本项目的目的也是通过该插件机制来强化Mybatis Generator本身,方便和减少我们平时的代码开发量。

  • 2019-09-08 09:09:48

    mybatis-generator自动生成代码插件使用详解

      mybatis-generator是一款在使用mybatis框架时,自动生成model,dao和mapper的工具,很大程度上减少了业务开发人员的手动编码时间,今天自己研究了一下,也分享一下使用心得供大家简单使用。

  • 2019-09-08 15:09:14

    IDEA从mapper.java跳转到mapper.xml

    在IDEA中写项目后台的时候,从controller到service到mapper到dao,都可以直接跳转,但是mapper.java到mapper.xml就需要自行寻找,为了开发方便,安装相应插件--mybais

  • 2019-09-08 21:44:15

    git pre-commit hook failed 解决办法

    今天在上传项目的时候在commit阶段遇到一个问题,无论是在Sourcetree上传还是用命令git commit -m 'xxx'都报了一下错误: