Vue 新增不參與打包的介面地址配置文件 by:授客 QQ:1033553122 開發環境 Win 10 Vue 2.5.2 問題描述 vue工程項目,npm run build webpack方式打包,每次打包後如果需要更改後臺介面地址(項目中,介面地址設置成變數,存放在js文件中,需要用到的地方 ...
Vue 新增不參與打包的介面地址配置文件
by:授客 QQ:1033553122
開發環境
Win 10
Vue 2.5.2
問題描述
vue工程項目,npm run build webpack方式打包,每次打包後如果需要更改後臺介面地址(項目中,介面地址設置成變數,存放在js文件中,需要用到的地方導入),都需要重新打包,比較麻煩,所以,想給項目增加個配置文件,打包後如果要更改介面地址,修改該文件即可。
解決方法
創建config.js
項目根目錄/static目錄下,創建config.js文件,內容如下:
;(function(env) {
// 開發環境介面伺服器地址
const dev = {
API_BASE_URL:"http://localhost:8000"
}
// 線上環境介面伺服器地址
const prod = {
API_BASE_URL:"http://10.xxx.xx.xx:8001"
}
if (env == "dev") {
return dev
} else if (env == "prod") {
return prod
}
})("dev")
修改main.js
import axios from "axios"
...略
let myConfigPath = "/static/config.js"
if (process.env.NODE_ENV === "development") {
myConfigPath = "../static/config.js"
}
axios.get(myConfigPath, { headers: { "Cache-Control": "no-cache" } }).then(response => {
Vue.prototype.$apiBaseURL = eval(response.data).API_BASE_URL
new Vue({
el: "#app",
router,
store, // 註入 store
components: { App },
template: "<App/>"
})
})
如上,先通過請求,獲取config.js文件內容 response.data,然後通過eval(response.data)文件內容當做代碼執行,進而獲取js中函數返回的內容,即我們需要的配置,並掛載在Vue的prototype上,就可以在每個 Vue 的實例中使用。這裡把vue創建實例放在獲取config.js配置文件之後主要是因為axios非同步請求的緣故。
註意,這裡不能不能使用import,一定要發起網路請求,去請求這個js文件,否則build時,webpack會將此配置文件應當輸出的值寫死在壓縮之後的js中,之後去動手修改dist/static中的配置文件就不起作用了。
另外,添加{ headers: { "Cache-Control": "no-cache" } }請求頭,防止瀏覽器從磁碟緩存讀取,導致後臺更改了配置,前臺讀取的還是舊的文件。
npm run build後,config.js位於dist/static目錄下,項目線上環境nginx 靜態文件路由關鍵配置如下:
location / {
root /opt/TMP/frontend/dist; #這裡的dist存放的就是上述打包的路徑
...
實踐表明,使用nginx部署的情況下,myConfigPath 不能設置為 "./static/config.js",只能設置為myConfigPath = "/static/config.js",即配置為絕對路徑,否則刷新某些頁面的情況下,會請求不到config.js
以下為配置myConfigPath 為 "./static/config.js"的情況下,執行二級頁面的刷新操作(頁面URL:http://10.1xx.xx.xx/testerView/testCaseManagement,根據我的項目程式設計,此操作會先訪問二級路由頁面testerView),查看nginx日誌,發現如下,請求找不到:
引用配置
本例中,在自己封裝的axios.js中使用該配置
import axios from"axios"
import Vue from "vue"
...略
function request(options) {
return new Promise((resolve, reject) => {
const instance = axios.create({
baseURL: Vue.prototype.$apiBaseURL,
headers:config.headers,
timeout:config.timeout,
withCredentials:config.withCredentials,
responseType:config.responseType
})
...略