vue 靜態檔案配置請求路徑

2021-10-04 05:12:28 字數 652 閱讀 4630

靜態目錄下面放入config.json檔案 用於以後更改配置;這個是出現在打包以後的資料夾的

,

"baseurl":

}}

通常有乙個單獨的js檔案來配置專案的各種url;我這裡是api.js

let configs

//獲取靜態json資料

let getjsondata = function (url)

configs =getjsondata('./static/config.json?r=' + math.random()) // 隨機引數用於防止取快取;路徑自己根據專案調整./static是打包以後的路徑,開發時候可以替換成開發時的路徑

const basepath = configs.axios.basepath.value

//配置各種url

const axiosurl = basepath + '***/' // 請求

const uploadurl = basepath + 'api/xx/xx/upload'// 上傳路徑

const uploadimageurl = basepath + 'api/***/***x/***x'// 上傳路徑

export default

靜態庫路徑配置

今天在編譯高博 視覺slam十四講 的第六講時,安裝了g2o後,執行程式出現 home hong slambook master slambook master ch6 g2o curve fitting build curve fitting error while loading shared ...

靜態庫路徑配置

編譯高博 視覺slam十四講 的第六講g2o curve fitting時,從thirdparty安裝了g2o後,執行程式出現 error while loading shared libraries libg2o core.so cannot open shared object file no ...

django 配置對於靜態檔案訪問的路徑

準備css檔案,準備js檔案,準備image檔案。在 根目錄新建目錄 medias 在 medias 目錄新建目錄 styles 用來存放css檔案。假設mysite是 的根目錄,medias是剛才我們新建的目錄 1 2 3 4 5 6 7 staticfiles dirs put strings ...