Bir sunucu uygulamasına bir POST isteği göndermeye çalışıyorum. İstek şu şekilde jQuery aracılığıyla gönderilir:
var productCategory = new Object();
productCategory.idProductCategory = 1;
productCategory.description = "Descrizione2";
newCategory(productCategory);
newCategory nerede
function newCategory(productCategory)
{
$.postJSON("ajax/newproductcategory", productCategory, function(
idProductCategory)
{
console.debug("Inserted: " + idProductCategory);
});
}
ve 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 ile JSON doğru gönderildiğini görüyorum:
{"idProductCategory":1,"description":"Descrizione2"}
Ama 415 Desteklenmeyen ortam türü alıyorum. Bahar mvc denetleyicinin imzası var
@RequestMapping(value = "/ajax/newproductcategory", method = RequestMethod.POST)
public @ResponseBody
Integer newProductCategory(HttpServletRequest request,
@RequestBody ProductCategory productCategory)
Birkaç gün önce işe yaradı, şimdi değil. Gerekirse daha fazla kod göstereceğim. Teşekkürler
var productCategory = { idProductCategory: 1, description: "Descrizione2" };
daha kısa ve okunması daha kolay olmaz mıydı ? Spring'eapplication/json
özellikle kabul etmesini söylemen gerekir mi? Başka bir deyişle, verilerin bir biçimde gelmesini bekliyor mu?