改进位置
发现是label_api里藏了我需要改进的东西
settings.py 数据库
我这边电脑上使用的是windows 192
vue.config.js
陈家强是这样设置的
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/'
: '/',
assetsDir: 'static',
// css: {
// extract: false
// },
devServer: {
proxy: {
// proxy all requests starting with /api to jsonplaceholder
'/labelapi': {
target: 'http://127.0.0.1:8000', //代理接口
// target: 'http://skin.machineilab.org', //代理接口
// target: 'http://192.168.7.197',
changeOrigin: true,
// pathRewrite: {
// '^8080/media': '8000/media' //代理的路径
// }
},
// proxy media
'/media': {
target: 'http://127.0.0.1:8000', //代理接口
// target: 'http://skin.machineilab.org', //代理接口
// target: 'http://192.168.7.197',
changeOrigin: true,
}
}
}
}