webpack关于webpack-dev-server开启proxy的官方介绍
Vue-cli proxyTable 解决开发环境的跨域问题——虽然这篇是写vue的,不过用在webpack-dev-server上也是一样的
webpack设置代理
http-proxy-middleware——webpack-dev-server的实现方法其实是对这个的封装
webpack.config.js
)中进行配置module.exports = {
...此处省略一万字
// webpack-dev-server的配置
devServer: {
historyApiFallback: true,
hot: true,
inline: true,
progress: true,
port: 3000,
host: '10.0.0.9',
proxy: {
'/test/*': {
target: 'http://m.qtour.next.qulv.com', //要跳转的域名
changeOrigin: true,
secure: false
}
}
},
...此处省略一万字
};
上述配置中,关于http-proxy的只是 proxy: {...}
中的值
为了方便起见,下面使用jquery封装好的ajax函数进行示范
$.ajax({
// url: 'http://m.qtour.next.qulv.com/api/v2/Search/Suggestion', // 这样不行
url: '/api/v2/Search/Suggestion', // 这样行
type: 'post',
data: {
app_id: '13751313169',
password: '123456',
user_name: 'Nicholas'
},
success: function(data) {
console.log(data);
}
});
'/test/*'
以及 target: 'http://localhost'
'/test/*'
这种格式的API的域名重定向为 'http://localhost'
url: '/test/testFetch/Login.php'
这句,实际上会自动补充前缀,也就是说,url: '/test/testFetch/Login.php' 等价于 url: 'http://10.0.0.9:3000/test/testFetch/Login.php'
url: '/test/testFetch/Login.php' 等价于 url: 'http://localhost/test/testFetch/Login.php'
changeOrigin
false
也有部分情况是可以的,具体原因不详,所以还是将其设置成 true
吧secure
pathRewrite
pathRewrite: {'^/api': ''}
'^/api'
使用 ''
代替(只是我猜,没是成功,估计是我的正则表达式写得不行)上述代码与 “调用接口” 中使用 $.ajax()
实现的效果是一样的
let testAsync = async function () {
var feeling = {
app_id: '13751313169',
password: '123456',
user_name: 'Nicholas'
};
var fetchParams = {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
credentials: 'include', // 将凭证也带上(例如cookies)
body: JSON.stringify(feeling),
};
let temp = await fetch('/test/testFetch/Login.php', fetchParams).then(response => response.text());
console.log(temp); // 这个就是一个json对象
return temp;
};
let data = testAsync(); // async函数返回值是一个Promise对象
console.log(data); // 这个是一个Promise对象