Spring MVC でコントローラーに AJAX クエリを作成しようとしています。
私のアクションコードは次のとおりです。
@RequestMapping(value = "events/add", method = RequestMethod.POST)
public void addEvent(@RequestParam(value = "start_date") String start_date, @RequestParam(value = "end_date") String end_date, @RequestParam(value = "text") String text, @RequestParam(value = "userId") String userId){
//some code
}
私のAjaxクエリは次のとおりです。
$.ajax({
type: "POST",
url:url,
contentType: "application/json",
data: {
start_date: scheduler.getEvent(id).start_date,
end_date: scheduler.getEvent(id).end_date,
text: scheduler.getEvent(id).text,
userId: userId
},
success:function(result){
//here some code
}
});
しかし、エラーが発生しました:
必須の文字列パラメーター ''start_date が存在しません
なんで?私が知っているように、私はそれを次のように提示しました(@RequestParam(value = "start_date") String start_date
UDP
今、私は 404 私のクラスを与えてデータを取得します
public class EventData {
public String end_date;
public String start_date;
public String text;
public String userId;
//Getters and setters
}
私のjs AJAX呼び出しは次のとおりです。
$.ajax({
type: "POST",
url:url,
contentType: "application/json",
// data: eventData,
processData: false,
data: JSON.stringify({
"start_date": scheduler.getEventStartDate(id),
"end_date": scheduler.getEventEndDate(id),
"text": scheduler.getEventText(id),
"userId": "1"
}),
そしてコントローラーアクション:
@RequestMapping(value = "events/add", method = RequestMethod.POST)
public void addEvent(@RequestBody EventData eventData){
}
JSON データは次のとおりです。
end_date: "2013-10-03T20:05:00.000Z"
start_date: "2013-10-03T20:00:00.000Z"
text: "gfsgsdgs"
userId: "1"