【发布时间】:2016-11-21 20:09:50
【问题描述】:
即使已知此错误,我也无法解决我的问题!
重置服务在此代码中声明:
@POST
@Transactional
@Consumes(MediaType.APPLICATION_JSON)
@Path("/addProduct")
public void addProductToShoppingBag(JSONObject object) throws JSONException
我正在使用这个 javascript 发送一个 POST 请求:
$.ajax({
header: 'application/json',
type: 'POST',
data: $.toJSON({
member_id: "1",
products_id: ["0","1"]
}),
url: url
}).done(success).error(failure);
我收到 415 - Unsupported Media Type 错误!!!有什么想法吗?
【问题讨论】:
标签: javascript ajax web-services jersey http-status-code-415