您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue動(dòng)態(tài)加載圖片在跨域時(shí)無(wú)法顯示怎么解決”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Vue動(dòng)態(tài)加載圖片在跨域時(shí)無(wú)法顯示怎么解決”文章能幫助大家解決問(wèn)題。
常規(guī)的請(qǐng)求轉(zhuǎn)發(fā)
在vue-cli3內(nèi),直接編輯vue.config.js,如下:
let proxyObj={}; proxyObj['/']={ ws:false, target:'http://localhost:8023',//后端地址 changeOrigin:true, pathRewrite:{ '^/':'' } }; module.exports={ devServer:{ host:'localhost', port:8080, proxy:proxyObj } };
代碼很簡(jiǎn)單,就不解釋了,這段代碼就是把所有請(qǐng)求都轉(zhuǎn)發(fā)到了后端。
常規(guī)的src動(dòng)態(tài)綁定
如下:
// position.duiduorob為data內(nèi)定義的字段 <img :src="require(`@/assets/image/dianhan${position.duiduorob}.png`)" >
值得注意的是,需要用require(``)這樣的方法,如果直接填寫圖片地址如:
<img :src="'../../assets/image/dianhan'+position.duiduorob+'.png'">
瀏覽器內(nèi)會(huì)找不到該圖片。原因:通常在編譯運(yùn)行后,圖片會(huì)被webpack統(tǒng)一打包到localhost:8080/static/img/[文件名].png,因?yàn)槭巧鲜鲞^(guò)程動(dòng)態(tài)加載的,所以u(píng)rl-loader無(wú)法解析圖片地址,所以導(dǎo)致上述方法中的圖片無(wú)法在瀏覽器內(nèi)顯示。解決方法就是通過(guò)require(``)這樣的方法將圖片作為模塊被加載。
跨域請(qǐng)求轉(zhuǎn)發(fā)時(shí)找不到圖片
前面也說(shuō)了,就是因?yàn)檗D(zhuǎn)發(fā)了全部請(qǐng)求,所以上述require(``)過(guò)后,瀏覽器去后端找圖片了,導(dǎo)致找不到。
解決思路:只轉(zhuǎn)發(fā)要訪問(wèn)后端接口的請(qǐng)求,其它不變。
所以其實(shí)就是過(guò)濾一下,添加一個(gè)條件。如下:要訪問(wèn)后端的請(qǐng)求在url上加一個(gè)/api即可
let proxyObj={}; proxyObj['/api']={ //url前部加上'/api' ws:false, target:'http://localhost:8023',//后端地址 changeOrigin:true, pathRewrite:{ '^/api':'' //到了后端去掉/api } }; module.exports={ devServer:{ host:'localhost', port:8080, proxy:proxyObj } };
所以在其他部分全部不變的情況下,只需在你封裝的http請(qǐng)求方法內(nèi)給url參數(shù)前加一個(gè)'/api'前綴,如下:
export const getRequst=(url,params)=>{ return axios({ method:'get', url:'/api'+ url,//原來(lái)為 url:url, data:params, }) };
這下訪問(wèn)后端的請(qǐng)求全部在url上套上了'/api',而其它請(qǐng)求也不會(huì)被轉(zhuǎn)發(fā)到后端了。
知識(shí)點(diǎn)補(bǔ)充:vue中解決跨域問(wèn)題
方法1.后臺(tái)更改header
header('Access-Control-Allow-Origin:*');//允許所有來(lái)源訪問(wèn) header('Access-Control-Allow-Method:POST,GET');//允許訪問(wèn)的方式
方法2.使用JQuery提供的jsonp
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(',') } }) } }
方法3.使用http-proxy-middleware 代理解決(項(xiàng)目使用vue-cli腳手架搭建)
例如請(qǐng)求的url:“http://f.apiplus.cn/bj11x5.json”
1、打開(kāi)config/index.js,在proxyTable中添寫如下代碼:
proxyTable: { '/api': { //使用"/api"來(lái)代替"http://f.apiplus.c" target: 'http://f.apiplus.cn', //源地址 changeOrigin: true, //改變?cè)?nbsp; pathRewrite: { '^/api': 'http://f.apiplus.cn' //路徑重寫 } } }
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' }
附:
方法二引入jq
1.下載依賴
cnpm install jquery --save-dev
2.在webpack.base.conf.js文件中加入
plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery" }) ],
3.在需要的temple里引入也可以在main.js里全局引入
import $ from 'jquery'
eg:
<template> <div class="source"> source{{data}} </div> </template> <script> import $ from 'jquery' export default({ name:"source", data(){ return{ data:"" } }, created(){ this.getData() }, methods:{ getData () { var self = this $.ajax({ url: '你要請(qǐng)求的url', type: 'GET', dataType: 'JSONP', success: function (res) { self.data = res.result } }) } } }) </script> <style> </style>
關(guān)于“Vue動(dòng)態(tài)加載圖片在跨域時(shí)無(wú)法顯示怎么解決”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(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)容。