1. 程式人生 > 程式設計 >vue接通後端api以及部署到伺服器操作

vue接通後端api以及部署到伺服器操作

1.開啟專案工程,找到config資料夾下index.js,進行以下修改

dev: {
  // Paths
  assetsSubDirectory: 'static',assetsPublicPath: '/',proxyTable: {
   '/api':{
    target: 'http://www.baidu.com',//後端api地址
    changeOrigin: true,pathRewrite:{
     '^api': ''
    }
   }
  },

2.然後開啟src下App.vue檔案配置預設字首

export default {
 name: 'App',created: function () {
  
  this.$http.defaults.baseURL = 'https://www.baidu.com/api'
  //後端api預設字首,每個請求都加上這個字首訪問後臺api
  
 }
}

3.開啟專案工程,找到config資料夾下prod.env.js,進行以下修改

'use strict'
module.exports = {
 NODE_ENV: '"production"',API_HOST: '"http://www.baidu.com"'//後端api地址
}

4.找到config資料夾下dev.env.js,進行以下修改

'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.變數分類配置

新建檔案,加入配置內容如下:

export const apiAddress = {
  install(Vue){
    Vue.prototype.$javaAddress = '11';
  }
};
export const config = {
  install(Vue){
    Vue.prototype.$config = '1';
  }
};
export default { apiAddress,config };

在main.js中引入配置

import { apiAddress,config } from './config/address';
Vue.use(apiAddress);
Vue.use(config);

2.目前我在用的

export default {
  install(Vue){
    Vue.prototype.$javaAddress = '111';
  }
};
import address from './config/address';
Vue.use(address);

vue接通後端api以及部署到伺服器操作

以上這篇vue接通後端api以及部署到伺服器操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。