Vue 跨域問題
阿新 • • 發佈:2021-02-09
目錄
一、環境
node 12.18.4
@vue/cli 4.5.10
二、配置
- vue.config.js,配置 devServer.proxy 屬性
module.exports = { devServer: { host: 'localhost', port: 8086, // 埠號 https: false, open: true, //配置自動啟動瀏覽器 proxy: { '/tiles': { target: 'http://localhost:6768', changeOrigin: true, pathRewrite: { '/tiles': '' } } } } }
- '/tiles' 等價'http://localhost:6768','/tiles' 省去了字首'http://localhost:8086'
http://localhost:8086/tiles/data/3dtile_dayanta/Tile_+006_+006/Tile_+006_+006_L17_00.b3dm
http://localhost:6768/data/3dtile_dayanta/Tile_+006_+006/Tile_+006_+006_L17_00.b3dm