1.0.1 • Published 4 years ago
xxmy-format-tools v1.0.1
xxmy-format-tools
原生微信小程序wxml中实用格式化日期工具,具体可以导入demo查看源码。
如果需要标准格式化,推荐使用momentjs
安装
npm install xxmy-format-tools
- 微信开发者工具编译 npm 包
wxs
format.wxs
展示格式化:formatTime
令牌 | 输出 | |
---|---|---|
年 | yyyy YYYY | 2021 |
yy YY y Y | 21 | |
月 | MM | 01 |
M | 1 | |
日 | DD dd | 03 |
D d | 3 | |
时 | HH hh | 09 |
H h | 9 | |
分 | mm | 08 |
m | 08 | |
秒 | ss | 04 |
s | 4 |
使用
<wxs src="../miniprogram_npm/xxmy-format-tools/format.wxs" module="format" />
<!-- 21-1-4 18:27:35 -->
<view class="date">{{format.formatTime(1609756055278,'y-M-D h:m:s')}}</view>
<!-- 2021-01-04 18:27:35 -->
<view class="date">{{format.formatTime(1609756055278,'YYYY-MM-dd HH:mm:ss')}}</view>