博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery 跨域访问的三种方式 No 'Access-Control-Allow-Origin' header is present on the reque
阅读量:6223 次
发布时间:2019-06-21

本文共 1473 字,大约阅读时间需要 4 分钟。

hot3.png

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');      });

 

转载于:https://my.oschina.net/kmnztech/blog/796126

你可能感兴趣的文章
使用Element-ui开发管理后台
查看>>
基于HTML5快速搭建TP-LINK电信拓扑设备面板
查看>>
IMWeb前端提升营七天学习总结
查看>>
unix文件描述符
查看>>
HTML5设备传感器总结
查看>>
JVM系列-04-JDK自带的管理分析工具
查看>>
videojs系列之二-完善一点点
查看>>
Safari 10默认禁用Flash插件
查看>>
7道常见的数据分析面试题
查看>>
Go语言很好很强大,但我有几个问题想吐槽
查看>>
工作的未来:敏捷人士瑞典大会上午议程回顾
查看>>
“认知计算”如何有效释放数据价值
查看>>
采访与书评 —— 《BDD In Action》
查看>>
Java永久代去哪儿了
查看>>
解读:Java 11中的模块感知服务加载器
查看>>
微软为无服务器架构引入新API管理消费层
查看>>
《Clojure Recipes》书评与问答
查看>>
微服务通信策略
查看>>
Apache Pulsar中的地域复制,第1篇:概念和功能
查看>>
实现一个最简单的模板分离
查看>>