axios中api请求以/api开头,不需要配置绝对路径,如http://....之类。
在vue.config.js中配置如下:target改为你要请求的api地址
devServer: {
// development server port 8000
port: 8000,
// If you want to turn on the proxy, please remove the mockjs /src/main.jsL11
proxy: {
'/api': {
target: 'http://172.16.1.110',
ws: true,
changeOrigin: true
}
}
}