這篇文章主要介紹了Ajax呼叫restful介面傳送Json格式資料的方法的相關資料,非常不錯,具有參考借鑒價值,有興趣的朋友一起看下吧
ajax傳送json格式數據,關鍵是指定contentType,data要是json格式
如果是restful接口,把type改成對應的post(增)、delete(刪)、put(改)、get(查)即可
var post_data={"name":"test001","pass":"xxxx"}; $.ajax({ url: "http://192.168.10.111:8080/uc/login", type: 'post', contentType: "application/json; charset=utf-8", data:JSON.stringify(post_data), success:function (data) { //调用成功 }, error: function(data, textStatus, errorThrown){ //调用失败 } });
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
以上是Ajax呼叫restful介面傳送Json格式資料的方式(附有程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!