vue 传date类型数据_详解element-ui日期时间选择器的日期格式化问题

在vue+element-ui项目中,使用datetimepicker选择日期时间,前端将数据传回后台时遇到类型转换问题。文章详细记录了解决这个问题的过程,包括尝试通过@DateTimeFormat和@JsonFormat注解以及Spring Boot配置文件进行日期格式化和时区转换,确保前端后端数据交换的正确性。
摘要由CSDN通过智能技术生成

最近在做vue+element-ui的后台管理页面,其中用到了datetimepicker来选择日期时间,但是在将数据传回后台的过程中遇到了一些令人头疼的问题,在此记录一下解决方案,以免日后再次遇到。

前端页面

前端代码

submitform(formname) {

this.$refs[formname].validate((valid) => {

let url = 'http://localhost:8088/pethospital/order-record'

let data = qs.stringify({

title: this.orderform.title,

hospitalid: this.orderform.hospitalid,

orderdate: this.orderform.orderdate,

ordertype: this.orderform.ordertype,

petvariety: this.orderform.petvariety,

mobilephone: this.orderform.mobilephone,

supplement: this.orderform.supplement

})

if (valid) {

axios.post(url, data)

.then(response => {

}).catch(error => {

this.$message({

<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值