跨域的post

之前有写过一个项目,前后端分开写的,请求的时候涉及到跨域,所以记下来demo,分享一下。

<script src="jquery-1.11.3.js"></script>//引入js文件


<script>
   fetch('http://....',{//url地址
                async:true,//同步还是异步
                method:'POST',//方法
                node:'cors',
//
                 // headers:{'Content-Type':'application/x-www-form-urlencoded'},
                body:JSON.stringify({
                    userName:$('#userName').val(),
                    password:$('#userPasswd').val()
                })
            }).then(function(response){
                console.log(response);
                if(response.ok){
                    return response.json()
                }
            }).then(function(data){
                console.log(data);
                if(data.result==1){
                    alert(data.message);
         
                 //window.location.href="menu.html";
                    console.log(token);
                }
            }).catch(function(e){
                console.log("fetch fail",JSON.stringify(e));
            });
        });


</script>

如果浏览器不兼容,就用jsonp好了,代码如下

if(self.fetch) {
// 使用 fetch 方法
} else {
// 使用 ajax方法
}

function handleResponse(response){
    console.log('The responsed data is: '+response.data);
}
var script = $('<script></script>');
$('script').attr("src","http://www.baidu.com/json/?callback=handleResponse");
$("body").prepend(script);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值