溫馨提示×

溫馨提示×

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

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

Vue中使用axios無法直接進行跨域訪問怎么辦?

發(fā)布時間:2020-05-22 14:09:39 來源:億速云 閱讀:1020 作者:鴿子 欄目:web開發(fā)
// axios 中的GET請求
axios.get('/user', {
    params: {
      ID: ‘001’
    }
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

// axios 中的POST請求
axios.post('/user', {
    firstName: '1',
    lastName: '2'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

方案1:既然使用axios直接進行跨域訪問不可行,我們就需要配置代理了。代理可以解決的原因:因為客戶端請求服務端的數(shù)據(jù)是存在跨域問題的,而服務器和服務器之間可以相互請求數(shù)據(jù),是沒有跨域的概念(如果服務器沒有設置禁止跨域的權限問題),也就是說,我們可以配置一個代理的服務器可以請求另一個服務器中的數(shù)據(jù),然后把請求出來的數(shù)據(jù)返回到我們的代理服務器中,代理服務器再返回數(shù)據(jù)給我們的客戶端,這樣我們就可以實現(xiàn)跨域訪問數(shù)據(jù)。

準備工作:安裝所需中間件和插件等,比如axios,http-proxy-middleware等。

具體案例:這里以訪問豆瓣Top250為例,直接訪問如下:

axios.get("http://api.douban.com/v2/movie/top250")
.then(res=>{
console.log(res)
})
.catch(err=>{
console.log(err)
})

當執(zhí)行npm run dev時,控制臺報錯如下:

Vue中使用axios無法直接進行跨域訪問怎么辦?

事實證明直接請求確實出現(xiàn)跨域問題了,下面具體演示解決跨域問題的步驟:

上面所說的必備條件都已安裝完成的情況下,執(zhí)行以下步驟即可解決問題:

1.配置BaseUrl

在main.js中,配置數(shù)據(jù)所在服務器的前綴(即固定部分),代碼如下:

// 項目入口,配置全局vue
import Vue from 'vue'
import VueRouter from './router/routes.js'
import Store from './store/index.js'

import './assets/less/index.less'
import App from './App.vue'

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-default/index.css'

import axios from 'axios'
Vue.prototype.$axios = axios
axios.defaults.baseURL = '/api'  //關鍵代碼
Vue.config.productionTip = false

Vue.use(ElementUI);

new Vue({
    router:VueRouter,
    store:Store,
    template:'<App/>',
    components: {App}
}).$mount('#app')

// 默認進入商品模塊
// VueRouter.push({ path: '/home' })

關鍵代碼:axios.defaults.baseURL = '/api',作用是我們每次發(fā)送的請求都會帶一個/api的前綴。

2.配置代理

在config文件夾下的index.js文件中的proxyTable字段中,作如下處理:

  dev: {
    env: require('./dev.env'),
    port: 8090,
    autoOpenBrowser: true,
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      '/api': {
        target:'http://api.douban.com/v2', // 你請求的第三方接口
        changeOrigin:true, // 在本地會創(chuàng)建一個虛擬服務端,然后發(fā)送請求的數(shù)據(jù),并同時接收請求的數(shù)據(jù),這樣服務端和服務端進行數(shù)據(jù)的交互就不會有跨域問題
        pathRewrite:{  // 路徑重寫,
          '^/api': ''  // 替換target中的請求地址,也就是說以后你在請求http://api.douban.com/v2/XXXXX這個地址的時候直接寫成/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
  }

3.在具體使用axios的地方,修改url如下即可:

 axios.get("/movie/top250").then((res) => {
                  res = res.data
                  if (res.errno === ERR_OK) {
                     this.themeList=res.data;
                  }
                }).catch((error) => {
                  console.warn(error)
                })

4.重新啟動項目之后,已經(jīng)解決了跨域問題,結果如下:
【注意】:必須重啟項目??!

原理:

因為我們給url加上了前綴/api,我們訪問/movie/top250就當于訪問了:localhost:8080/api/movie/top250(其中l(wèi)ocalhost:8080是默認的IP和端口)。

在index.js中的proxyTable中攔截了/api,并把/api及其前面的所有替換成了target中的內容,因此實際訪問Url是http://api.douban.com/v2/movie/top250。

至此,純前端配置代理解決axios跨域得到解決。

根據(jù)評論區(qū)內容,區(qū)分一下生產(chǎn)環(huán)境和開發(fā)環(huán)境,集體配置如下:

1.在config文件夾里面創(chuàng)建一個api.config.js的配置文件

const isPro = Object.is(process.env.NODE_ENV, 'production')

console.log(isPro);

module.exports = {
baseUrl: isPro ? 'https://www.***/index.php/Official(線上地址)' : 'api/'
}
2.在main.js文件里面引入上面文件,這樣就可以保證動態(tài)的匹配生產(chǎn)和開發(fā)環(huán)境的定義前綴了,代碼如下:

import Vue from 'vue'
import App from './App'
import router from './router'
import 'bootstrap/dist/js/bootstrap.min'
import 'bootstrap/dist/css/bootstrap.min.css'
import axios from 'axios'
import apiConfig from '../config/api.config'

Vue.prototype.$axios = axios;
Vue.config.productionTip = false;
axios.defaults.baseURL = apiConfig.baseUrl;// 配置接口地址
axios.defaults.withCredentials = false;
以上兩步即可解決vue的跨域問題,并且可以可以直接build打包到線上。

向AI問一下細節(jié)

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

AI