我是靠谱客的博主 激情猫咪,最近开发中收集的这篇文章主要介绍从后端到前端跨域解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

记录一下跨域问题:

要下载两个jar文件,cors-filter ,java-property-utils这两个文件,

下载地址:

http://mvnrepository.com/artifact/com.thetransactioncompany/cors-filter

http://mvnrepository.com/artifact/com.thetransactioncompany/java-property-utils

(真心看不惯那些下载开源jar包还要积分的!!!!!)

任意选择一个版本点击jar即可下载。


放到Tomcat lib目录下面,不是项目的lib目录,然后配置项目的web.xml,添加如下代码。

    <!-- 实现跨域 -->
    <filter>
        <filter-name>CORS</filter-name>
        <filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
        <init-param>
            <param-name>cors.allowOrigin</param-name>
            <param-value>*</param-value>
        </init-param>
        <init-param>
            <param-name>cors.supportedMethods</param-name>
            <param-value>GET, POST, HEAD, PUT, DELETE</param-value>
        </init-param>
        <init-param>
            <param-name>cors.supportedHeaders</param-name>
            <param-value>Accept, Origin, X-Requested-With, Content-Type, Last-Modified</param-value>
        </init-param>
        <init-param>
            <param-name>cors.exposedHeaders</param-name>
            <param-value>Set-Cookie</param-value>
        </init-param>
        <init-param>
            <param-name>cors.supportsCredentials</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>CORS</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

前端跨域解决方案:

jsoup方案:使用jsoup默认的提交方式是GET,TYPE设置成POST还是默认GET

$.ajax({
        url:'',
        dataType:'jsonp',
        success:function(data){
            alert(data.msg);
        }
});

widthCredentials方案:

默认情况下widthCredentials为false,我们需要设置widthCredentials为true:

var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://www.xxx.com/api');
xhr.withCredentials = true;
xhr.onload = onLoadHandler;
xhr.send();

ajax使用widthCredentials:

$.ajax({  
   type: "post", 
   url: "",  
   data: {},  
   xhrFields: {
	  withCredentials: true
   },
   success: function (res1) { 
	console.log(res1);
   }
});
亲测有效!欢迎留言。

最后

以上就是激情猫咪为你收集整理的从后端到前端跨域解决方案的全部内容,希望文章能够帮你解决从后端到前端跨域解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部