jQuery 跨域访问的三种方式 No 'Access-Control-Allow-Origin' header is present on the reque

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 跨域访问的三种方式 No 'Access-Control-Allow-Origin' header is present on the reque相关的知识,希望对你有一定的参考价值。

问题:

XMLHttpRequest cannot load http://v.xxx.com. No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘http://localhost:63342‘ is therefore not allowed access. test.html:1  
Resource interpreted as Script but transferred with MIME type text/html: 

 解决方案:

$(function($){  
      var url = ‘http://v.juhe.cn/weather/index‘;  
      $.ajax(url, {  
        data: {  
          ‘cityname‘: ‘襄阳‘,  
          ‘dtype‘: ‘jsonp‘,  
          ‘key‘: ‘xxxx‘,  
          ‘_‘: new Date().getTime()  
        },  
        dataType: ‘jsonp‘,  
        crossDomain: true,  
        success: function(data) {  
          if(data && data.resultcode == ‘200‘){  
            console.log(data.result.today);  
          }  
        }  
      });  
  
      var url2 = ‘http://v.juhe.cn/weather/index?callback=?‘;  
      $.getJSON(url2, {  
        ‘cityname‘: ‘北京‘,  
        ‘dtype‘: ‘jsonp‘,  
        ‘key‘: ‘xxxx‘,  
        ‘_‘: new Date().getTime()  
      }, function(data){  
        if(data && data.resultcode == ‘200‘){  
          console.log(data.result.today);  
        }  
      });  
  
      var url3 = ‘http://v.juhe.cn/weather/index?callback=?‘;  
      $.get(url3, {  
        ‘cityname‘: ‘澳门‘,  
        ‘dtype‘: ‘jsonp‘,  
        ‘key‘: ‘xxxx‘,  
        ‘_‘: new Date().getTime()  
      }, function(data){  
        if(data && data.resultcode == ‘200‘){  
          console.log(data.result.today);  
        }  
      }, ‘json‘);  
    });  

 

以上是关于jQuery 跨域访问的三种方式 No 'Access-Control-Allow-Origin' header is present on the reque的主要内容,如果未能解决你的问题,请参考以下文章

jQuery跨域请求带Cookie和Session的方法

Cors跨域请求问题

AJAX实现跨域的三种方法

跨域的三种解决方式

post 变成option 请求的三种原因

10月10日 jsonp的三种跨域方式