在微信小程序中传递日期,通常有以下几种方法:
时间戳传递
后台传递过来的时间戳可以在前端通过`new Date(时间戳)`转换为日期对象。
可以自定义日期格式,例如将年、月、日、时、分、秒拼接成字符串。
日期选择器
使用微信小程序提供的`
日期格式化
可以在`utils`文件中编写日期格式化的函数,例如将日期对象转换为`YYYY-MM-DD HH:mm:ss`的格式,并在需要的地方调用该函数进行格式化。
index.js:
```javascript
// 导入日期格式化函数
const { formatTime } = require("../../utils/utils");
Page({
data: {
date: "",
formattedDate: ""
},
onLoad: function () {
// 假设从后台获取到的时间戳为1673536800000
const timestamp = 1673536800000;
const date = new Date(timestamp);
const formattedDate = formatTime(date);
this.setData({
date: timestamp,
formattedDate: formattedDate
});
},
// 日期选择器绑定
bindDateChange: function (e) {
const selectedDate = e.detail.value;
const date = new Date(selectedDate);
const formattedDate = formatTime(date);
this.setData({
formattedDate: formattedDate
});
}
});
```
wxml:
```xml
当前日期:{{formattedDate}}
```
utils/utils.js:
```javascript
function formatTime(date) {
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hour = date.getHours();
const minute = date.getMinutes();
const second = date.getSeconds();
return [year, month, day].map(formatNumber).join(' / ') + ' ' + [hour, minute, second].map(formatNumber).join(' : ');
}
function formatNumber(n) {
n = n.toString();
return n ? n : '0' + n;
}
module.exports = {
formatTime: formatTime
};
```
通过上述方法,你可以在微信小程序中方便地传递和展示日期。