发现通过标头传递身份验证不适用于jsonp数据类型的jQuery ajax。因此尝试了以下方法,效果很好。
$.ajax({ type: "GET", url: "http://tomcat:tomcat@localhost:1222/testservice/rest/test/users", dataType:"jsonp", success: function(res) { alert(res); }, error: function(err) { alert(err); }});function callbackMethod(data) { alert(data);}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)