LocalTime text could not be parsed at index 0
出现这个问题,后端设计的参数类型为LocalTime,但是测试抓包看见是’9:00:00‘,按这样传参报错LocalTime text could not be parsed at index 0
解决方案:09:00:00
注意时间类型的不要传24:00:00,针对LocalTime类型,会自动转00:00:00
针对LocalDateTime等类型,会自自动+1天,然后转00:00:00
LocalTime text could not be parsed at index 0
出现这个问题,后端设计的参数类型为LocalTime,但是测试抓包看见是’9:00:00‘,按这样传参报错LocalTime text could not be parsed at index 0
解决方案:09:00:00
注意时间类型的不要传24:00:00,针对LocalTime类型,会自动转00:00:00
针对LocalDateTime等类型,会自自动+1天,然后转00:00:00