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格式數據的方法的全部敘述,希望對大家有所幫助,如果大家想了解更多內容敬請關注網站!