1.打开项目工程,找到config文件夹下index.js,进行以下修改
1
2
3
4
5
6
7
8
9
10
11
12
13
|
dev: {
// paths
assetssubdirectory: 'static' ,
assetspublicpath: '/' ,
proxytable: {
'/api' :{
target: 'http://www.baidu.com' ,//后端api地址
changeorigin: true ,
pathrewrite:{
'^api' : ''
}
}
},
|
2.然后打开src下app.vue文件配置默认前缀
1
2
3
4
5
6
7
8
9
|
export default {
name: 'app' ,
created: function () {
this .$http.defaults.baseurl = 'https://www.baidu.com/api'
//后端api默认前缀,每个请求都加上这个前缀访问后台api
}
}
|
3.打开项目工程,找到config文件夹下prod.env.js,进行以下修改
1
2
3
4
5
|
'use strict'
module.exports = {
node_env: '"production"' ,
api_host: '"http://www.baidu.com"' //后端api地址
}
|
4.找到config文件夹下dev.env.js,进行以下修改
1
2
3
4
5
6
7
8
|
'use strict'
const merge = require( 'webpack-merge' )
const prodenv = require( './prod.env' )
module.exports = merge(prodenv, {
node_env: '"development"' ,
api_host: '"http://localhost:8080"' //这里是本地的访问ip配置
})
|
5.然后 npm run build 对项目文件进行打包,完成后在项目根目录下生成dist文件夹,把dist文件夹上传到服务器即可
补充知识:vue全局变量配置(多用于调用后端api)
我们在使用vue时,通常需要调用后端api进行一系列的操作。
下面分享一个我的配置方案。
1.变量分类配置
新建文件,加入配置内容如下:
1
2
3
4
5
6
7
8
9
10
11
|
export const apiaddress = {
install(vue){
vue.prototype.$javaaddress = '11' ;
}
};
export const config = {
install(vue){
vue.prototype.$config = '1' ;
}
};
export default { apiaddress, config };
|
在main.js中引入配置
1
2
3
|
import { apiaddress, config } from './config/address' ;
vue.use(apiaddress);
vue.use(config);
|
2.目前我在用的
1
2
3
4
5
6
7
|
export default {
install(vue){
vue.prototype.$javaaddress = '111' ;
}
};
import address from './config/address' ;
vue.use(address);
|
以上这篇vue接通后端api以及部署到服务器操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_43817709/article/details/90669464