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

溫馨提示×

溫馨提示×

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

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

詳解Webpack-dev-server的proxy用法

發布時間:2020-10-18 13:38:15 來源:腳本之家 閱讀:185 作者:funnycoderstar 欄目:web開發

前言

如果你有單獨的后端開發服務器 API,并且希望在同域名下發送 API 請求 ,那么代理某些 URL 會很有用。

解決開發環境的跨域問題(不用在去配置nginx和host, 爽歪歪~~)

在webpack.config.js中配置

下面簡單介紹一下五個經常使用的場景

使用一:

mmodule.exports = {
  //...
  devServer: {
    proxy: {
      '/api': 'http://localhost:3000'
    }
  }
};

請求到 /api/xxx 現在會被代理到請求 http://localhost:3000/api/xxx, 例如 /api/user 現在會被代理到請求 http://localhost:3000/api/user

使用二

如果你想要代碼多個路徑代理到同一個target下, 你可以使用由一個或多個「具有 context 屬性的對象」構成的數組:

module.exports = {
  //...
  devServer: {
    proxy: [{
      context: ['/auth', '/api'],
      target: 'http://localhost:3000',
    }]
  }
};

使用三:

如果你不想始終傳遞 /api ,則需要重寫路徑:

module.exports = {
  //...
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:3000',
        pathRewrite: {'^/api' : ''}
      }
    }
  }
};

請求到 /api/xxx 現在會被代理到請求 http://localhost:3000/xxx, 例如 /api/user 現在會被代理到請求 http://localhost:3000/user

使用四:

默認情況下,不接受運行在 HTTPS 上,且使用了無效證書的后端服務器。如果你想要接受,只要設置 secure: false 就行。修改配置如下:

module.exports = {
  //...
  devServer: {
    proxy: {
      '/api': {
        target: 'https://other-server.example.com',
        secure: false
      }
    }
  }
};

使用五:

有時你不想代理所有的請求。可以基于一個函數的返回值繞過代理。

在函數中你可以訪問請求體、響應體和代理選項。必須返回 false 或路徑,來跳過代理請求。

例如:對于瀏覽器請求,你想要提供一個 HTML 頁面,但是對于 API 請求則保持代理。你可以這樣做:

module.exports = {
 //...
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:3000',
        bypass: function(req, res, proxyOptions) {
          if (req.headers.accept.indexOf('html') !== -1) {
            console.log('Skipping proxy for browser request.');
            return '/index.html';
          }
        }
      }
    }
  }  
};

解決跨域原理

上面的參數列表中有一個changeOrigin參數, 是一個布爾值, 設置為true, 本地就會虛擬一個服務器接收你的請求并代你發送該請求,

module.exports = {
  //...
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:3000',
        changeOrigin: true,
      }
    }
  }
};

vue-cli中proxyTable配置接口地址代理示例

修改 config/index.js

module.exports = {
  dev: {
  // 靜態資源文件夾
  assetsSubDirectory: 'static',
  // 發布路徑
  assetsPublicPath: '/',

  // 代理配置表,在這里可以配置特定的請求代理到對應的API接口
  // 使用方法:https://vuejs-templates.github.io/webpack/proxy.html
  proxyTable: {
    // 例如將'localhost:8080/api/xxx'代理到'https://wangyaxing.cn/api/xxx'
    '/api': {
      target: 'https://wangyaxing.cn', // 接口的域名
      secure: false, // 如果是https接口,需要配置這個參數
      changeOrigin: true, // 如果接口跨域,需要進行這個參數配置
    },
    // 例如將'localhost:8080/img/xxx'代理到'https://cdn.wangyaxing.cn/xxx'
    '/img': {
      target: 'https://cdn.wangyaxing.cn', // 接口的域名
      secure: false, // 如果是https接口,需要配置這個參數
      changeOrigin: true, // 如果接口跨域,需要進行這個參數配置
      pathRewrite: {'^/img': ''} // pathRewrite 來重寫地址,將前綴 '/api' 轉為 '/'。
    }
  },
  // Various Dev Server settings
  host: 'localhost', // can be overwritten by process.env.HOST
  port: 4200, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
}

更多參數

dev-server 使用了非常強大的http-proxy-middleware , http-proxy-middleware 基于 http-proxy 實現的,可以查看 http-proxy 的源碼和文檔:https://github.com/nodejitsu/node-http-proxy。

  • target:要使用url模塊解析的url字符串
  • forward:要使用url模塊解析的url字符串
  • agent:要傳遞給http(s).request的對象(請參閱Node的https代理和http代理對象)
  • ssl:要傳遞給https.createServer()的對象
  • ws:true / false,是否代理websockets
  • xfwd:true / false,添加x-forward標頭
  • secure:true / false,是否驗證SSL Certs
  • toProxy:true / false,傳遞絕對URL作為路徑(對代理代理很有用)
  • prependPath:true / false,默認值:true - 指定是否要將目標的路徑添加到代理路徑
  • ignorePath:true / false,默認值:false - 指定是否要忽略傳入請求的代理路徑(注意:如果需要,您必須附加/手動)。
  • localAddress:要為傳出連接綁定的本地接口字符串
  • changeOrigin:true / false,默認值:false - 將主機標頭的原點更改為目標URL

參考

官方文檔
http-proxy-middleware
node-http-proxy
API Proxying During Development

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

双城市| 新田县| 吉木乃县| 娱乐| 五华县| 福鼎市| 横山县| 威远县| 伊春市| 西青区| 宁津县| 东城区| 灵璧县| 新闻| 阿鲁科尔沁旗| 东阳市| 湖口县| 湘潭县| 沐川县| 绵阳市| 迭部县| 察雅县| 西昌市| 巴塘县| 禹城市| 东乌珠穆沁旗| 林口县| 河北省| 盘锦市| 宣汉县| 拉孜县| 宜春市| 涞源县| 鹤山市| 新巴尔虎左旗| 凤阳县| 孙吴县| 贺州市| 台北县| 平阴县| 毕节市|