12345678910111213141516171819$.ajax({url: "http://1.1.1.1/api/v2/user/inviters", //接口type: "post", //GET或POSTdata: JSON.stringify({}), //数据headers: {'Content-Type': 'application/json'},//dataType: 'json', //返回的数据格式:json/xml/html/script/jsonp/textsuccess: function(msg) {if (msg.data && msg.data.inviters) {addFimg(msg.data.inviters);}}, //回调成功方法error: function(xhr, textStatus) {console.log(xhr);console.log(textStatus)}});