请问如何在webpack.config.js配置代理服务器??
whyue opened this issue · 0 comments
whyue commented
我在webpack.config.js 文件中导入了
var proxy = require('http-proxy-middleware')
并且在该文件的module.exports内, 设置如下:
devServer: { host: 'localhost', port: '8080', proxy: [ { context: '/micheng-web/*', target: 'http://localhost:8080', } ] },
在组件内ajax 请求如下:
$.ajax({ type: "post", url: "/micheng-web/test/select5", data: {id: 1}, dataType: "json", async: true, success: function (data) { console.log(data); }, error: function (e, m, n) { alert("加载失败!"); } });
页面加载却出错了, 结果如下:
jquery.min.js:4 POST **http://localhost:3000**/micheng-web/test/select5 404 (Not Found)
为什么请求后的地址变成了 我自己的地址了??? 急急急!!! 在线等