XMLHttpRequest cannot load – Origin is not allowed by Access-Control-Allow-Origin.

Posted 笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XMLHttpRequest cannot load – Origin is not allowed by Access-Control-Allow-Origin.相关的知识,希望对你有一定的参考价值。

报错:跨域

 XMLHttpRequest cannot load http://localhost:8080/yxt-admin/admin/store. No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘技术分享http://company.99kst.com:8088‘ is therefore not allowed access. 
网上查了查有两种解决方法
 在测试的时候是别的地址来访问的,所以在获取session的时候,把地址改成 http://company.99kst.com:8088/.....(因为我的是在上传文件的时候需要使用到)
解决办法:
1.页面请求的是自己写的一个servelet,加入response.setHeader("Access-Control-Allow-Origin", "*");
2.请求页面html,加入<meta http-equiv="Access-Control-Allow-Origin" content="*">
 

以上是关于XMLHttpRequest cannot load – Origin is not allowed by Access-Control-Allow-Origin.的主要内容,如果未能解决你的问题,请参考以下文章

跨域出现:XMLHttpRequest cannot load错误

错误:XMLHttpRequest cannot load

XMLHttpRequest cannot load的问题解决方法

转XMLHttpRequest cannot load的解决方法

Ajax 请求请求 MVC WebAPI跨域问题;XMLHttpRequest cannot load

XMLHttpRequest cannot load – Origin is not allowed by Access-Control-Allow-Origin.