webpack-dev-server 解决跨域问题
前后端分离开发,用ajax访问后台接口。
第一次解决这个跨域问题,不知道错在那里了。。。
实在是无能为力了。。。。。
js代码
url:'/v1/user/login',
data:"username=" + loginUserName + "&password="+loginUserPassword,
type:'get',
dataType:'json',
success:function(data){
location.href = "../index/index.html";
},
failure:function(){
alert("登陆失败!");
}
webpack.config.js 配置是这样写的
devServer: {
historyApiFallback: true,
hot: true,
inline: true,
progress: true,
proxy: {
'/v1/*': {
target: 'http://192.xxx.xxx.xxx:8080',//后台接口地址
changeOrigin: true,
secure: false,
}
}
},
代码显示:
用jsonp跨域
js代码
$.ajax({
url:'http://192.xxx.xxx.xxx:8080/v1/user/login',
data:"username=" + this.loginUserName + "&password="+ this.loginUserPassword,
type:'get',
dataType:'jsonp',
jsonpCallback : 'loginCallback',
success:function(data){
location.href = "../index/index.html";
},
failure:function(){
alert("登陆失败!");
console.log("error!");
}
});
成功
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Request Method 改为 POST,后台接口采用 REST 风格,会指定请求类型。
ajax 请求的配置修改:
先确认下要请求的接口, 如果是http://192.xxx.xxx.xxx:8080/v1/user/login
这么写
老铁把
改为
试试 ;