国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

element-ui日期時間選擇器的日期格式化問題

atinosun / 782人閱讀

摘要:最近在做的后臺管理頁面,其中用到了來選擇日期時間,但是在將數據傳回后臺的過程中遇到了一些令人頭疼的問題,在此記錄一下解決方案,以免日后再次遇到。

最近在做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({
                    message: "錯誤:" + error,
                    type: true
                })
            })
        } else {
            this.$message("驗證錯誤:請確認信息是否填寫完整")
        }
    });
}
            

實體類代碼

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("添加的預約記錄:" + orderRecordDO);
    orderRecordDOMapper.insertSelective(orderRecordDO);
    return null;
}

控制臺輸出

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]]
看了控制臺的輸出信息,大概知道是前端將日期當做String類型傳輸的,但是我們后臺定義日期用的是Date類型,因此這里報的轉換異常。本來我想用SimpleDateFormat來轉換的,但是覺得這樣很麻煩,然后在網上查找相關資料發現可以有更簡單的方法。 嘗試1:

在實體類字段上添加@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")

@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date orderDate;

控制臺輸出

添加的預約記錄:{"id":null,"title":"測試1","hospitalId":1001,"orderDate":"Wed Apr 10 10:00:00 CST 2019","orderType":2001,"petVariety":"哈士奇","mobilePhone":"1000","supplement":"二哈"}

數據庫記錄

遇到的問題:從數據庫獲取數據后在前端顯示不友好 嘗試2:

在實體類字段添加@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")和@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")

/**
 * timezone = "GMT+8"指定時區
 */
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date orderDate;

前端顯示效果:這下就能顯示成我們想要的效果了

嘗試3:我的后臺項目使用SpringBoot搭建的,我在application.yml文件中添加如下配置
# 配置數據源
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類型,下面的設置可以自動將其轉換為Date類型,不需要手動轉換
  mvc:
    date-format: yyyy-MM-dd HH:mm:ss
  # 以下設置可以將Date類型自動轉換為如下格式的日期,指定Jackson格式化日期使用的時區,Jackson默認使用UTC
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8

顯示效果

總結:

日期從前端傳到后端(添加),由String類型解析成Date類型,從后端傳到前端(查詢),由Date類型解析成String類型

可以使用注解的方式,@DateTimeFormat、@JsonFormat

可以使用配置文件方式,spring.mvc.date-format、spring.jackson.date-format/time-zone

為什么要設置time-zone?因為Jackson默認使用UTC時區,所以需要手動指定時區為GMT+8

附:原時間2019-04-12 12:00:00,相差8個小時

第一次用思否,大家多多包涵......

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/77501.html

相關文章

  • 開發中遇到的問題總結

    摘要:獲取字符串中出現次數最多的字符。去掉字符串中的所有空格中對象數組按對象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...

    wenshi11019 評論0 收藏0
  • 開發中遇到的問題總結

    摘要:獲取字符串中出現次數最多的字符。去掉字符串中的所有空格中對象數組按對象屬性排序 VUE 1、vue——解決You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use / eslint-disable / to ign...

    Yuqi 評論0 收藏0
  • element-ui 時間選擇器限制范圍(隨動)

    摘要:需求選擇日期范圍,但是選擇范圍需要在一周以內。方法考慮到有兩種設計方式用兩個獨立時間選擇器控制,實現起來比較混亂。用日期范圍選擇器。 需求:選擇日期范圍,但是選擇范圍需要在一周以內。舉個栗子:假設選第一個日期為1月17日,那么1月11日以前、1月23號以后的日期都需要設為禁選狀態。 方法:考慮到有兩種設計方式:1、用兩個獨立時間選擇器控制,實現起來比較混亂。2、用日期范圍選擇器。第一種...

    xingqiba 評論0 收藏0
  • element-ui 時間選擇器限制范圍(隨動)

    摘要:需求選擇日期范圍,但是選擇范圍需要在一周以內。方法考慮到有兩種設計方式用兩個獨立時間選擇器控制,實現起來比較混亂。用日期范圍選擇器。 需求:選擇日期范圍,但是選擇范圍需要在一周以內。舉個栗子:假設選第一個日期為1月17日,那么1月11日以前、1月23號以后的日期都需要設為禁選狀態。 方法:考慮到有兩種設計方式:1、用兩個獨立時間選擇器控制,實現起來比較混亂。2、用日期范圍選擇器。第一種...

    ChristmasBoy 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<