asp.net – 如何使用ajax调用跨域web api?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何使用ajax调用跨域web api?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jQuery.ajax({
           type: "GET",url: 'http://example.com/restaurant/VeryLogin(username,password)',dataType: "json",success: function (data) {
               alert(data);
           },error: function (XMLHttpRequest,textStatus,errorThrown) {
               alert("error");
           }
       });

它提醒成功,但数据为空. url返回xml数据,如果我们指定dataType,我们可以获取json数据,但是这里没有获取任何数据.

任何帮助赞赏.

解决方法

Javascript受相同域策略的约束.这意味着为了安全起见,客户端浏览器中的JS脚本只能访问它来自的相同域.

JSONP不受相同的限制.

在这里查看JSONP上的jQuery文档:

http://api.jquery.com/jQuery.getJSON/

以下是使用JSONP通过JQuery AJAX访问跨域服务的工作示例:

http://jsbin.com/idasay/4

以防JSBIN将来删除此粘贴:

jQuery.ajax({
     type: "GET",url: 'http://api.geonames.org/postalCodeLookupJSON?postalcode=6600&country=AT&username=demo',dataType: "jsonp",cache: false,crossDomain: true,processData: true,success: function (data) {
         alert(JSON.stringify(data));
     },errorThrown) {
         alert("error");
     }
 });
原文链接:https://www.f2er.com/aspnet/245611.html

猜你在找的asp.Net相关文章