vue跨域解決方法

vue跨域解決方法html

vue項目中,前端與後臺進行數據請求或者提交的時候,若是後臺沒有設置跨域,前端本地調試代碼的時候就會報「No 'Access-Control-Allow-Origin' header is present on the requested resource.」 這種跨域錯誤。前端

要想本地正常的調試,解決的辦法有三個:vue

1、後臺更改headerjquery

header('Access-Control-Allow-Origin:*');//容許全部來源訪問  
header('Access-Control-Allow-Method:POST,GET');//容許訪問的方式   

這樣就能夠跨域請求數據了。ios

2、使用JQuery提供的jsonp  (注:vue中引入jquery,自行百度)ajax

methods: {  
  getData () {  
    var self = this  
    $.ajax({  
      url: 'http://f.apiplus.cn/bj11x5.json',  
      type: 'GET',  
      dataType: 'JSONP',  
      success: function (res) {  
        self.data = res.data.slice(0, 3)  
        self.opencode = res.data[0].opencode.split(',')  
      }  
    })  
  }  
}  

  

經過這種方法也能夠解決跨域的問題。vue-cli

 

3、使用http-proxy-middleware 代理解決(項目使用vue-cli腳手架搭建)json

 

例如請求的url:「http://f.apiplus.cn/bj11x5.jsonaxios

一、打開config/index.js,在proxyTable中添寫以下代碼:api

     

proxyTable: {  
  '/api': {  //使用"/api"來代替"http://f.apiplus.c"  
    target: 'http://f.apiplus.cn', //源地址  
    changeOrigin: true, //改變源  
    pathRewrite: {  
      '^/api': 'http://f.apiplus.cn' //路徑重寫  
      }  
  }  
}  

二、使用axios請求數據時直接使用「/api」:

getData () {  
 axios.get('/api/bj11x5.json', function (res) {  
   console.log(res)  
 })  

經過這中方法去解決跨域,打包部署時還按這種方法會出問題。解決方法以下:

let serverUrl = '/api/'  //本地調試時  
// let serverUrl = 'http://f.apiplus.cn/'  //打包部署上線時  
export default {  
  dataUrl: serverUrl + 'bj11x5.json'  
}  
調試時定義一個serverUrl來替換咱們的「/api」,最後打包時,只須要將「http://www.xxx.com」替換這個「/api」就能夠了。
相關文章
相關標籤/搜索