ajax跨域处理 No 'Access-Control-Allow-Origin' header is present on the requested resource 问题
Posted qinyios
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax跨域处理 No 'Access-Control-Allow-Origin' header is present on the requested resource 问题相关的知识,希望对你有一定的参考价值。
Controller层的类上增加@CrossOrign注解,当前文件的所有接口就都可以被调用
spring注解@CrossOrigin不起作用的原因
1、是springMVC的版本要在4.2或以上版本才支持@CrossOrigin
2、非@CrossOrigin没有解决跨域请求问题,而是不正确的请求导致无法得到预期的响应,导致浏览器端提示跨域问题。
3、在Controller注解上方添加@CrossOrigin注解后,仍然出现跨域问题,解决方案之一就是:
在@RequestMapping注解中没有指定Get、Post方式,具体指定后,问题解决。
采纳自:https://www.cnblogs.com/mmzs/p/9167743.html
以上是关于ajax跨域处理 No 'Access-Control-Allow-Origin' header is present on the requested resource 问题的主要内容,如果未能解决你的问题,请参考以下文章
[转]No 'Access-Control-Allow-Origin' header is present on the requested resource.'Ajax跨域访
JSP ajax跨域问题 怎么处理 原因:CORS 头缺少 'Access-Control-Allow-Origin')。 ajax http 415
No 'Access-Control-Allow-Origin' header is present on the requested resource——Web Api跨域问题(示例