javascript date to java.time.LocalDate

后端 未结 2 1203
小鲜肉
小鲜肉 2021-02-08 11:38

I\'m trying to post json data to a Controller in Java.

This is my controller:

@ResponseBody
    @RequestMapping(value=\"/{schoolId}\", method=RequestMeth         


        
2条回答
  •  一生所求
    2021-02-08 12:01

    Since you are using moment there is a simple way to achieve this :

    let startDate = moment().toISOString();
    

    This will convert to valid LocalDateTime format

提交回复
热议问题