前端接受到后端LocalDateTime传过来时间为数组的处理方式

csdn解决方案

问题:日期类型的数据传到前端格式变为数组

前端接受到后端LocalDateTime传过来时间为数组的处理方式_第1张图片

 

解决方案: 加注解

 @Data
 @NoArgsConstructor
 @AllArgsConstructor
 public class Dept {
     private Integer id; //ID
     private String name; //部门名称
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private LocalDateTime createTime; //创建时间
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private LocalDateTime updateTime; //修改时间
 }
 ​

前端接受到后端LocalDateTime传过来时间为数组的处理方式_第2张图片

 

最终效果:

前端接受到后端LocalDateTime传过来时间为数组的处理方式_第3张图片

 

你可能感兴趣的:(javase项目前置,java,开发语言)