您好,登錄后才能下訂單哦!
這篇文章主要介紹vue跨域如何解決,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
vue項(xiàng)目中,前端與后臺(tái)進(jìn)行數(shù)據(jù)請(qǐng)求或者提交的時(shí)候,如果后臺(tái)沒(méi)有設(shè)置跨域,前端本地調(diào)試代碼的時(shí)候就會(huì)報(bào)“No 'Access-Control-Allow-Origin' header is present on the requested resource.” 這種跨域錯(cuò)誤。
要想本地正常的調(diào)試,解決的辦法有三個(gè):
一、后臺(tái)更改header
header('Access-Control-Allow-Origin:*');//允許所有來(lái)源訪問(wèn) header('Access-Control-Allow-Method:POST,GET');//允許訪問(wèn)的方式
這樣就可以跨域請(qǐng)求數(shù)據(jù)了。
二、使用JQuery提供的jsonp (注:vue中引入jquery,自行百度)
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(',') } }) } }
通過(guò)這種方法也可以解決跨域的問(wèn)題。
三、使用http-proxy-middleware 代理解決(項(xiàng)目使用vue-cli腳手架搭建)
例如請(qǐng)求的url:“http://f.apiplus.cn/bj11x5.json”
1、打開(kāi)config/index.js,在proxyTable中添寫(xiě)如下代碼:
proxyTable: { '/api': { //使用"/api"來(lái)代替"http://f.apiplus.c" target: 'http://f.apiplus.cn', //源地址 changeOrigin: true, //改變?cè)? pathRewrite: { '^/api': 'http://f.apiplus.cn' //路徑重寫(xiě) } } }
2、使用axios請(qǐng)求數(shù)據(jù)時(shí)直接使用“/api”:
getData () { axios.get('/api/bj11x5.json', function (res) { console.log(res) })
通過(guò)這中方法去解決跨域,打包部署時(shí)還按這種方法會(huì)出問(wèn)題。解決方法如下:
let serverUrl = '/api/' //本地調(diào)試時(shí) // let serverUrl = 'http://f.apiplus.cn/' //打包部署上線時(shí) export default { dataUrl: serverUrl + 'bj11x5.json' }
調(diào)試時(shí)定義一個(gè)serverUrl來(lái)替換我們的“/api”,最后打包時(shí),只需要將“http://www.xxx.com”替換這個(gè)“/api”就可以了。
以上是vue跨域如何解決的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。