首页 > Web开发 > 详细

Ajax返回200,却进入了error

时间:2019-02-20 22:30:42      阅读:276      评论:0      收藏:0      [点我收藏+]

在跨域请求中

ajax中,设置了

xhrFields: { withCredentials: true} ,相应的应在后台也应该设置
ajax:
$.ajax({
                type: ‘post‘,
                xhrFields: {
                    withCredentials: true
                },
                url: "http://localhost:8060/authentication/form",
                data: {
                    ‘username‘: username,
                    ‘password‘: password,
                    ‘imageCode‘:imageCode
                },
                dataType: "text"
            }).success(function (data) {
                alert("登陆成功");
                /*将返回信息同时存入sessionStorage,cookie*/
                sessionStorage.setItem(‘token‘, JSON.stringify(data));
                document.cookie = "info="+JSON.stringify(data);
                //window.location.href="index.html"
            }).error(function () {
                alert("账号密码不正确");

            });

java

 response.setCharacterEncoding("UTF-8");
        response.setContentType("application/json;charset=utf-8");
        response.setHeader("Access-Control-Allow-Credentials","true");
        response.setHeader("Access-Control-Allow-Origin", "http://admin.wenfan.com");  //允许跨域请求
        response.setHeader("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
        response.setHeader("Access-Control-Allow-Headers","Authorization");

 

Ajax返回200,却进入了error

原文:https://www.cnblogs.com/outxiao/p/10409428.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!