我是Polymer的新手,我想发布AJAX文章。但是,我已宣布发布内容类型为[object Object]
的{{1}},而不是正文。服务器配置没有问题,我已经用rest客户端对其进行了测试,控制器方法如下所示:
text/plain
我用铁-ajax制成的聚合物ajax,如下所示:
@RequestMapping(value = "/stringCount", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<StringUtilsModel> count(@RequestBody StringUtilsModel string) {
System.out.println("here");
System.out.println(string.getStringInput());
return new ResponseEntity<StringUtilsModel>(string, HttpStatus.OK);
}
我使用最新的Firefox(41.0)也在旧的IE 8.0上测试
答案 0 :(得分:1)
我认为您已正确构建代码。
尝试JSON.stringify()
查看您的body
。
答案 1 :(得分:1)
contentType
属性应写为content-type
。