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

溫馨提示×

溫馨提示×

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

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

vue中如何解決跨域路由沖突問題

發布時間:2022-04-22 10:42:48 來源:億速云 閱讀:362 作者:iii 欄目:大數據

這篇文章主要介紹“vue中如何解決跨域路由沖突問題”,在日常操作中,相信很多人在vue中如何解決跨域路由沖突問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue中如何解決跨域路由沖突問題”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

vue 簡介

Vue.js(讀音 /vju?/, 類似于 view) 是一套構建用戶界面的漸進式框架。

Vue 只關注視圖層, 采用自底向上增量開發的設計。

Vue 的目標是通過盡可能簡單的 API 實現響應的數據綁定和組合的視圖組件。

Vue 學習起來非常簡單,本教程基于 Vue 2.1.8 版本測試。

當我們在路由里面配置成以下代理可以解決跨域問題

proxyTable: {
   '/goods/*': {
    target: 'http://localhost:3000'
   },
   '/users/*': {
    target: 'http://localhost:3000'
   }
  },

這種配置方式在一定程度上解決了跨域問題,但是會帶來一些問題,

比如我們的vue 路由 也命名為 goods,這時候就會產生了沖突,

如果項目中接口很多,都在這里配置是很麻煩的,也容易產生路由沖突。

正確的姿勢

如果把所有的接口,統一規范為一個入口,在一定程度上會解決沖突

把以上配置統一前面加上 /api/

proxyTable: {
   '/api/**': {
    target: 'http://localhost:3000'
   },
  },

如果我們配置成這種方式,在使用http請求的時候就會發生變化,會在請求前面加上一個api,相對路由也會發生變化,也會在接口前面加上api,這樣也會很麻煩,我們可以使用以下方式來解決這個問題

proxyTable: {
   '/api/**': {
    target: 'http://localhost:3000',
    pathRewrite:{
     '^/api':'/'
    }
   },
  },

上面這個代碼,就是把咱們虛擬的這個api接口,去掉,此時真正去后端請求的時候,不會加上api這個前綴了,那么這樣我們前臺http請求的時候,還必須加上api前綴才能匹配到這個代理,代碼如下:

logout(){
  axios.post('/api/users/logout').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 },
 getGoods(){
  axios.post('/api/goods/list').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 }

我們可以利用axios的baseUrl直接默認值是 api,這樣我們每次訪問的時候,自動補上這個api前綴,就不需要我們自己手工在每個接口上面寫這個前綴了

在入口文件里面配置如下:

import Axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = 'api'

如果這配置 ‘api/' 會默認讀取本地的域

上面這樣配置的話,不會區分生產和開發環境

在config 文件夾里面新建一個 api.config.js 配置文件

const isPro = Object.is(process.env.NODE_ENV, 'production')
module.exports = {
 baseUrl: isPro ? 'http://www.vnshop.cn/api/' : 'api/'
}

然后在main.js 里面引入,這樣可以保證動態的匹配生產和開發的定義前綴

import apiConfig from '../config/api.config'
import Axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = apiConfig.baseUrl

經過上面配置后,在dom里面可以這樣輕松的訪問,也不需要在任何組件里面引入axios模塊了。

logout(){
  this.$http.post('/users/logout').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 },
 getGoods(){
  this.$http.post('/goods/list').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 }

最終代碼

在代理里面配置

proxyTable: {
   '/api/**': {
    target: 'http://localhost:3000',
    pathRewrite:{
     '^/api':'/'
    }
   },
  },

在config里面的api.config.js 配置

在config 文件夾里面新建一個 api.config.js 配置文件

const isPro = Object.is(process.env.NODE_ENV, 'production')
module.exports = {
 baseUrl: isPro ? 'http://www.vnshop.cn/api/' : 'api/'
}

關于生產和開發配置不太了解

可以去 dev-server.js 里面看配置代碼

const webpackConfig = (process.env.NODE_ENV === 'testing' || process.env.NODE_ENV === 'production') ?
 require('./webpack.prod.conf') :
 require('./webpack.dev.conf')

在main.js 入口文件里面配置

import apiConfig from '../config/api.config'
import Axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, Axios)
Axios.defaults.baseURL = apiConfig.baseUrl

在dom里面請求api的姿勢

logout(){
  this.$http.post('/users/logout').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 },
 getGoods(){
  this.$http.post('/goods/list').then(result=>{
   let res = result.data;
   this.nickName = '';
   console.log(res);
  })
 }

PS:下面通過一段代碼學習下vue下跨域設置

1、在使用vue開發的時候經常要涉及到跨域的問題,其實在vue cli中是有我們設置跨域請求的文件的。

2、當跨域無法請求的時候我們可以修改工程下config文件夾下的index.js中的dev:{}部分。

dev: {
  env: require('./dev.env'),
  port: 8080,
  autoOpenBrowser: false,
  assetsSubDirectory: 'static',
  assetsPublicPath: '/',
  proxyTable: {
    '/api': {
      target: 'http://api.douban.com/v2',
      changeOrigin: true,
      pathRewrite: {
        '^/api': ''
      }
    }
  },
  // CSS Sourcemaps off by default because relative paths are "buggy"
  // with this option, according to the CSS-Loader README
  // (https://github.com/webpack/css-loader#sourcemaps)
  // In our experience, they generally work as expected,
  // just be aware of this issue when enabling this option.
  cssSourceMap: false
}

將target設置為我們需要訪問的域名。

3、然后在main.js中設置全局屬性:

Vue.prototype.HOST = '/api'

4、至此,我們就可以在全局使用這個域名了,如下:

var url = this.HOST + '/movie/in_theaters'
  this.$http.get(url).then(res => {
   this.movieList = res.data.subjects;
  },res => {
   console.info('調用失敗');
  });

到此,關于“vue中如何解決跨域路由沖突問題”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

vue
AI

从江县| 青川县| 临城县| 陕西省| 余江县| 池州市| 安西县| 平利县| 丰顺县| 乌拉特后旗| 永川市| 鲁山县| 温泉县| 宜丰县| 务川| 东乌珠穆沁旗| 湘西| 烟台市| 长顺县| 深泽县| 乐昌市| 昌宁县| 革吉县| 江城| 大厂| 巴楚县| 肇源县| 凉城县| 栾城县| 乌拉特后旗| 诏安县| 巩义市| 太仆寺旗| 临猗县| 城固县| 西宁市| 堆龙德庆县| 三原县| 通城县| 赤城县| 闽清县|