คำถามติดแท็ก http-status-code-415

14
POST JSON ล้มเหลวด้วย 415 ประเภทสื่อที่ไม่รองรับ, Spring 3 mvc
ฉันพยายามส่งคำขอ POST ไปยัง servlet ส่งคำขอผ่าน 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': …

15
ข้อผิดพลาดประเภทสื่อที่ไม่รองรับ Http 415 กับ JSON
ฉันกำลังเรียกใช้บริการ REST ด้วยคำขอ JSON และตอบสนองด้วยHTTP 415 "Unsupported Media Type"ข้อผิดพลาด ("Content-Type", "application/json; charset=utf8")ประเภทคำขอเนื้อหามีการตั้งค่า ใช้ได้ดีถ้าฉันไม่รวมออบเจ็กต์ JSON ในคำขอ ฉันใช้google-gson-2.2.4ไลบรารีสำหรับ JSON ฉันลองใช้สองไลบรารีที่แตกต่างกัน แต่ก็ไม่แตกต่างกัน ใครสามารถช่วยฉันแก้ไขปัญหานี้ได้ไหม นี่คือรหัสของฉัน: public static void main(String[] args) throws Exception { JsonObject requestJson = new JsonObject(); String url = "xxx"; //method call for generating json requestJson = generateJSON(); URL myurl = new …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.