码迷,mamicode.com
首页 > 数据库 > 详细

No 'Access-Control-Allow-Origin' header is present on the requested resource.

时间:2016-12-06 03:20:36      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:oca   request   浏览器   open   原因   网上   head   new   http   

Response to preflight request doesn‘t pass access control check: No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘http://localhost:8088‘ is therefore not allowed access.

初学webservice,想在Javaweb项目里调用网上的天气预报服务,结果浏览器控制台出现了以上错误

错误原因很明了,意思是跨域请求不被允许,‘http://localhost:8088‘ 是当前的可用域;故而

var xmlHttp=new XMLHttpRequest();

var url="http://www.webxml.com.cn/WebServices/WeatherWS.asmx";

var soapBody="...略...";

xmlHttp.open(‘get‘,url,true);

xmlHttp.send(soapBody);

会报以上异常。

汗~异想天开了

No 'Access-Control-Allow-Origin' header is present on the requested resource.

标签:oca   request   浏览器   open   原因   网上   head   new   http   

原文地址:http://www.cnblogs.com/laorenzhenhaoa/p/6136033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!