开始记录vue的相关问题啦

从接口获取的时间格式为:2022-03-16T07:26:12.659+00:00
转化为:2022-03-16 03:26:12

在uni-app中使用Moment.js

1、安装依赖

npm install moment --save 在我的uni-app中安装不上,直接从别的项目上把node_modules\moment 这个依赖包拷贝到了现在的这个项目

2、main.js引入文件

import moment from './node_modules/moment/moment.js';

Vue.filter('moment', function (value, formatString) {
    formatString = formatString || 'YYYY-MM-DD hh:mm:ss';
	return moment(value).format(formatString);
});

3、页面上格式化时间

time = '2022-03-16T07:26:12.659+00:00'

<view class="">{{time | moment}}</view>
Logo

前往低代码交流专区

更多推荐