14
POST JSON, 415 Desteklenmeyen ortam türü, Yay 3 mvc ile başarısız oluyor
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) { …