91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

南充市| 徐汇区| 罗甸县| 华容县| 宾阳县| 大埔县| 定兴县| 镇原县| 日照市| 瓮安县| 曲周县| 汝城县| 北京市| 萍乡市| 弥渡县| 都昌县| 武夷山市| 城固县| 双城市| 连城县| 丽江市| 开远市| 富川| 本溪| 靖江市| 安吉县| 镇江市| 涞水县| 剑川县| 全椒县| 特克斯县| 深圳市| 漳浦县| 巩留县| 广汉市| 蒙城县| 海晏县| 齐河县| 紫阳县| 清河县| 宿松县|