Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

前端传的日期格式是yyyy-MM-dd, 怎么到了后端接收的时候变成了yyyy-MM-ddTHH:mm:ssZ这样的了

image.png

Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.time.LocalDate` from String "2021-01-06T00:00:00.000Z": Failed to deserialize java.time.LocalDate: (java.time.format.DateTimeParseException) Text '2021-01-06T00:00:00.000Z' could not be parsed, unparsed text found at index 10; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.time.LocalDate` from String "2021-01-06T00:00:00.000Z": Failed to deserialize java.time.LocalDate: (java.time.format.DateTimeParseException) Text '2021-01-06T00:00:00.000Z' could not be parsed, unparsed text found at index 10
 at [Source: (PushbackInputStream); line: 1, column: 192] (through reference chain: com.faujor.inMatter.entity.dataobject.ProjImplementProcedure["signDate"])]

这是前端传的值:
image.png
image.png
image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

前端应该是把这个值转成了 date 对象来传递了.让前端改为字符串传递吧.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...