您好,登錄后才能下訂單哦!
小編給大家分享一下如何解決element-ui日期時(shí)間選擇器的日期格式化問題,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
最近在做vue+element-ui的后臺(tái)管理頁面,其中用到了DateTimePicker來選擇日期時(shí)間,但是在將數(shù)據(jù)傳回后臺(tái)的過程中遇到了一些令人頭疼的問題,在此記錄一下解決方案,以免日后再次遇到。
前端頁面
前端代碼
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({ message: '錯(cuò)誤:' + error, type: true }) }) } else { this.$message('驗(yàn)證錯(cuò)誤:請(qǐng)確認(rèn)信息是否填寫完整') } }); }
實(shí)體類代碼
private Long id; private String title; private Integer hospitalId; private Date orderDate; private Integer orderType; private String petVariety; private String mobilePhone; private String supplement;
Controller代碼
@PostMapping("/order-record") public CommonResult addOrderRecord(OrderRecordDO orderRecordDO) throws ParseException { System.out.println("添加的預(yù)約記錄:" + orderRecordDO); orderRecordDOMapper.insertSelective(orderRecordDO); return null; }
控制臺(tái)輸出
Field error in object 'orderRecordDO' on field 'orderDate': rejected value [2019-04-10 10:00:00]; codes [typeMismatch.orderRecordDO.orderDate,typeMismatch.orderDate,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [orderRecordDO.orderDate,orderDate]; arguments []; default message [orderDate]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'orderDate'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2019-04-10 10:00:00'; nested exception is java.lang.IllegalArgumentException]]
看了控制臺(tái)的輸出信息,大概知道是前端將日期當(dāng)做String類型傳輸?shù)?,但是我們后臺(tái)定義日期用的是Date類型,因此這里報(bào)的轉(zhuǎn)換異常。本來我想用SimpleDateFormat來轉(zhuǎn)換的,但是覺得這樣很麻煩,然后在網(wǎng)上查找相關(guān)資料發(fā)現(xiàn)可以有更簡單的方法。
嘗試1:
在實(shí)體類字段上添加@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date orderDate;
控制臺(tái)輸出
添加的預(yù)約記錄:{"id":null,"title":"測(cè)試1","hospitalId":1001,"orderDate":"Wed Apr 10 10:00:00 CST 2019","orderType":2001,"petVariety":"哈士奇","mobilePhone":"1000","supplement":"二哈"}
數(shù)據(jù)庫記錄
數(shù)據(jù)庫記錄
遇到的問題:從數(shù)據(jù)庫獲取數(shù)據(jù)后在前端顯示不友好
顯示
嘗試2: 在實(shí)體類字段添加@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")和@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
/** * timezone = "GMT+8"指定時(shí)區(qū) */ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date orderDate;
前端顯示效果:這下就能顯示成我們想要的效果了
前端顯示
嘗試3:我的后臺(tái)項(xiàng)目使用SpringBoot搭建的,我在application.yml文件中添加如下配置
# 配置數(shù)據(jù)源 spring: datasource: name: pet-hospital type: com.alibaba.druid.pool.DruidDataSource url: jdbc:mysql://localhost:3306/pet_hospital?serverTimezone=GMT%2B8 driver-class-name: com.mysql.cj.jdbc.Driver username: root password: 1741248769 # Vue前端傳來的日期為String類型,下面的設(shè)置可以自動(dòng)將其轉(zhuǎn)換為Date類型,不需要手動(dòng)轉(zhuǎn)換 mvc: date-format: yyyy-MM-dd HH:mm:ss # 以下設(shè)置可以將Date類型自動(dòng)轉(zhuǎn)換為如下格式的日期,指定Jackson格式化日期使用的時(shí)區(qū),Jackson默認(rèn)使用UTC jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8
顯示效果
顯示
總結(jié):
日期從前端傳到后端(添加),由String類型解析成Date類型,從后端傳到前端(查詢),由Date類型解析成String類型
可以使用注解的方式,@DateTimeFormat、@JsonFormat
可以使用配置文件方式,spring.mvc.date-format、spring.jackson.date-format/time-zone
為什么要設(shè)置time-zone?因?yàn)镴ackson默認(rèn)使用UTC時(shí)區(qū),所以需要手動(dòng)指定時(shí)區(qū)為GMT+8
附:原時(shí)間2019-04-12 12:00:00,相差8個(gè)小時(shí)
不指定時(shí)區(qū)
以上是“如何解決element-ui日期時(shí)間選擇器的日期格式化問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。