這次帶給大家Ajax的restful介面傳輸Json資料的方法,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){ //调用失败 } });
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是Ajax的restful介面傳輸Json資料的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!