亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue項目怎么實現webpack配置代理

發布時間:2022-04-11 11:09:39 來源:億速云 閱讀:347 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“vue項目怎么實現webpack配置代理”,內容詳細,步驟清晰,細節處理妥當,希望這篇“vue項目怎么實現webpack配置代理”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

webpack配置代理,解決跨域

在config文件夾中的index.js文件配置

主要是這句話

proxyTable: { //本地測試接口
      '/': {
         target: 'http://xx.xx.xx.xx',
         changeOrigin: true,
         secure: false
     }
 },

示例代碼:

module.exports = {
  dev: {
 
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: { //本地測試接口
      '/': {
         target: 'http://xx.xx.xx.xx',
         changeOrigin: true,
         secure: false
       }
     },
 
    // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    autoOpenBrowser: false,
    errorOverlay: true,
    notifyOnErrors: true,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions- 
 
    /**
     * Source Maps
     */
 
    // https://webpack.js.org/configuration/devtool/#development
    devtool: 'cheap-module-eval-source-map',
 
    // If you have problems debugging vue-files in devtools,
    // set this to false - it *may* help
    // https://vue-loader.vuejs.org/en/options.html#cachebusting
    cacheBusting: true, 
    cssSourceMap: true
  },
 
  build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),
 
    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
 
    /**
     * Source Maps
     */
 
    productionSourceMap: true,
    // https://webpack.js.org/configuration/devtool/#production
    devtool: '#source-map',
 
    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    productionGzip: false,
    productionGzipExtensions: ['js', 'css'],
 
    // Run the build command with an extra argument to
    // View the bundle analyzer report after build finishes:
    // `npm run build --report`
    // Set to `true` or `false` to always turn it on or off
    bundleAnalyzerReport: process.env.npm_config_report
  }
}

vue跨域問題,修改代理后仍404

首先確認安裝了axios,安裝方法:cnpm install axios -S或者不用鏡像npm install axios

vue項目怎么實現webpack配置代理

dev: {undefined

// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {
  '/api': {
    target: 'http://40.73.37.92:8090/',//設置你調用的接口域名和端口號 別忘了加http
    changeOrigin: true,
    pathRewrite: {
      '^/api': ''//這里理解成用‘/api'代替target里面的地址,后面組件中我們掉接口時直接用api代替 比如我要調用'http://40.00.100.100:3002/user/add',直接寫‘/api/user/add'即可
    }
  }
},

接口請求用法

vue項目怎么實現webpack配置代理

讀到這里,這篇“vue項目怎么實現webpack配置代理”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

元阳县| 攀枝花市| 青浦区| 德昌县| 黎川县| 永宁县| 鹰潭市| 祁阳县| 琼海市| 福贡县| 隆尧县| 杭锦旗| 武平县| 怀安县| 大连市| 隆德县| 梁河县| 台前县| 江城| 仲巴县| 天峨县| 安泽县| 融水| 海阳市| 贵南县| 如东县| 德江县| 乌兰浩特市| 酒泉市| 霞浦县| 南召县| 临泽县| 寻甸| 信阳市| 确山县| 汕尾市| 溆浦县| 郁南县| 贵德县| 九龙城区| 乌什县|