我正在尝试向Servlet发送POST请求。通过jQuery通过以下方式发送请求:
var productCategory = new Object();
productCategory.idProductCategory = 1;
productCategory.description = "Descrizione2";
newCategory(productCategory);
newCategory在哪里
function newCategory(productCategory)
{
$.postJSON("ajax/newproductcategory", productCategory, function(
idProductCategory)
{
console.debug("Inserted: " + idProductCategory);
});
}
而postJSON是
$.postJSON = function(url, data, callback) {
return jQuery.ajax({
'type': 'POST',
'url': url,
'contentType': 'application/json',
'data': JSON.stringify(data),
'dataType': 'json',
'success': callback
});
};
使用firebug,我看到正确发送了JSON:
{"idProductCategory":1,"description":"Descrizione2"}
但是我得到415不支持的媒体类型。Spring MVC控制器具有签名
@RequestMapping(value = "/ajax/newproductcategory", method = RequestMethod.POST)
public @ResponseBody
Integer newProductCategory(HttpServletRequest request,
@RequestBody ProductCategory productCategory)
几天前它起作用了,现在却不起作用了。如果需要,我将显示更多代码。谢谢
var productCategory = { idProductCategory: 1, description: "Descrizione2" };
更简洁,更容易阅读?您需要告诉Springapplication/json
明确接受吗?换句话说,它期望数据以某种形式出现吗?