Skip to content Skip to sidebar Skip to footer

Javascript Date To Java.time.localdate

I'm trying to post json data to a Controller in Java. This is my controller: @ResponseBody @RequestMapping(value='/{schoolId}', method=RequestMethod.POST) public ClassGroup

Solution 1:

I got the same problem, solved it using:

var dateString = newDate().toISOString().substring(0,10);

or

var dateString = newDate().toISOString().split("T")[0];

Convert to ISO string ("2015-10-14T09:39:49.942Z"), then keep only first ten characters ie, the date.

Solution 2:

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

let startDate = moment().toISOString();

This will convert to valid LocalDateTime format

Post a Comment for "Javascript Date To Java.time.localdate"