16.如何做到webpack打包vue項目後,可以修改設定檔

來源:互聯網
上載者:User

標籤:更新   span   打包   key   ons   err   bpa   creat   問題   

問題描述:

前端需要修改restful API的url,但是打包之後,設定檔找不到了,如果在npm run build 產生dist後,這個配置也被寫死了,傳到啟動並執行前端伺服器上後,假設某次,api伺服器的ip修改了,改動只是更新下這個url,但是卻需要會到前端源碼,url後,在重新npm run build,然後再把整個dist再重新傳到前端伺服器,才可以。

解決方案:

用了generate-asset-webpack-plugin 這個外掛程式,在webpack.prod.conf.js中去產生configServer.json檔案,讓其在build的時候產生json檔案,然後再使用axios非同步擷取json,替換url即可

具體做法:

先安裝generate-asset-webpack-plugin外掛程式

npm install --save-dev generate-asset-webpack-plugin

在webpack.prod.conf.js裡面配置

//讓打包的時候輸出可配置的檔案var GenerateAssetPlugin = require(‘generate-asset-webpack-plugin‘); var createServerConfig = function(compilation){  let cfgJson={ApiUrl:"http://139.129.31.108:8001"};  return JSON.stringify(cfgJson);}
//讓打包的時候輸入可配置的檔案    new GenerateAssetPlugin({        filename: ‘serverconfig.json‘,        fn: (compilation, cb) => {            cb(null, createServerConfig(compilation));        },        extraFiles: []    })

打包之後,在根目錄就會產生serverconfig.json檔案

使用:

axios.get("serverconfig.json").then((result)=>{                localStorage.setItem(‘ApiUrl‘,result.data.ApiUrl);                console.log(localStorage.getItem(‘ApiUrl‘));               }).catch((error)=>{console.log(error)});

則可以擷取到serverconfig.json裡面的key  ApiUrl的值,需要注意的是,由於是非同步作業,為了通訊,可以採用localstorage,把東西存起來,即localstorage.setItem

使用的時候可以用localstorage.getItem

 

16.如何做到webpack打包vue項目後,可以修改設定檔

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.