这是问题
以下是调用球衣部分的代码:
$http.post('/easyshow/api/shows/add', selectedShows).then(
function(data) {
alert("Yes");
},
function(data, status, headers, config, statusText) {
alert("No");
console.log("data : " + data + "status : " + status + "headers : " + headers +
"config : " + config + "statusText : " + statusText);
});
最后是球衣方法:
@POST
@javax.ws.rs.Path("/add")
@Consumes(MediaType.APPLICATION_JSON)
public Response addShows(List<ScannedShow> body) {
...
Response res = Response.status(Response.Status.OK) // 200
.build();
return res;
}
服务器端没有错误。 Everythings工作,创建和存储对象。但总有这个错误500,所以我永远不会去当时的成功案例...