一、先在medths方法中定义下面两个函数
// 给后端发送日期格式
formatDateValue(now) {
var year = this.dateZero(now.getFullYear()); //取得4位数的年份
var month = this.dateZero(now.getMonth() + 1); //取得日期中的月份,其中0表示1月,11表示12月
var date = this.dateZero(now.getDate()); //返回日期月份中的天数(1到31)
var hour = this.dateZero(now.getHours()); //返回日期中的小时数(0到23)
var minute = this.dateZero(now.getMinutes()); //返回日期中的分钟数(0到59)
var second = this.dateZero(now.getSeconds()); //返回日期中的秒数(0到59)
return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
},
// 日期前面加0
dateZero(time) {
if (time < 10) {
time = "" + "0" + time;
}
return time;
},
二、在发起请求的请求体中写入以下代码
//需要发送的值
this.formatDateValue(new Date(this.appointmentTime))
三、如只需要发起当前时间,可以直接写成this.formatDateValue(new Date())