我知道这是一个简单的。但找不到解决办法。
我的 jQuery-ajax 将是,
var json = {"message":"Message123","time":"time123","name":"test123"}
data : JSON.stringify(json),
我的 Spring 控制器将是,
@RequestMapping(value = "chat.html", method=RequestMethod.GET )
public @ResponseBody String getChat() {
System.out.println("Entered in to the controller ");
String name == ???
String msg == ???
String time == ???
//Process the functionality using the msg,name,time
return "Json String";
}
如何获取名称、消息、时间的值。
希望我们的堆栈成员能帮助我。