欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue动态加载图片在跨域时无法显示的问题及解决方法

程序员文章站 2023-09-27 13:45:12
写在前面小记,就简单写了 。问题:vue开发时因为要访问后端的接口所以要配置请求转发,如果直接转发全部请求,那么vue动态绑定的src也会转发到后端,因为图片在前端,所以会收到404 not foun...

写在前面

小记,就简单写了 。问题:vue开发时因为要访问后端的接口所以要配置请求转发,如果直接转发全部请求,那么vue动态绑定的src也会转发到后端,因为图片在前端,所以会收到404 not found的报错。

常规的请求转发

在vue-cli3内,直接编辑vue.config.js,如下:

let proxyobj={};
proxyobj['/']={
  ws:false,
  target:'http://localhost:8023',//后端地址
  changeorigin:true,
  pathrewrite:{
    '^/':''
  }
};
module.exports={
  devserver:{
    host:'localhost',
    port:8080,
    proxy:proxyobj
  }
};

代码很简单,就不解释了,这段代码就是把所有请求都转发到了后端。

常规的src动态绑定

如下:

// position.duiduorob为data内定义的字段
<img :src="require(`@/assets/image/dianhan${position.duiduorob}.png`)" >

值得注意的是,需要用require(``)这样的方法,如果直接填写图片地址如:

<img :src="'../../assets/image/dianhan'+position.duiduorob+'.png'">

浏览器内会找不到该图片。原因:通常在编译运行后,图片会被webpack统一打包到localhost:8080/static/img/[文件名].png,因为是上述过程动态加载的,所以url-loader无法解析图片地址,所以导致上述方法中的图片无法在浏览器内显示。解决方法就是通过require(``)这样的方法将图片作为模块被加载。

跨域请求转发时找不到图片

前面也说了,就是因为转发了全部请求,所以上述require(``)过后,浏览器去后端找图片了,导致找不到。
解决思路:只转发要访问后端接口的请求,其它不变。
所以其实就是过滤一下,添加一个条件。如下:要访问后端的请求在url上加一个/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请求方法内给url参数前加一个'/api'前缀,如下:

export const getrequst=(url,params)=>{
  return axios({
    method:'get',
    url:'/api'+ url,//原来为 url:url,
    data:params,
  })
};

这下访问后端的请求全部在url上套上了'/api',而其它请求也不会被转发到后端了。

知识点补充:vue中解决跨域问题

方法1.后台更改header

header('access-control-allow-origin:*');//允许所有来源访问 
header('access-control-allow-method:post,get');//允许访问的方式   

方法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 代理解决(项目使用vue-cli脚手架搭建)

例如请求的”

1、打开config/index.js,在proxytable中添写如下代码:

proxytable: { 
 '/api': { //使用"/api"来代替"http://f.apiplus.c" 
  target: 'http://f.apiplus.cn', //源地址 
  changeorigin: true, //改变源 
  pathrewrite: { 
   '^/api': 'http://f.apiplus.cn' //路径重写 
   } 
 } 
}

2、使用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' 
}

附:

方法二引入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: '你要请求的url',
     type: 'get',
     datatype: 'jsonp',
     success: function (res) {
      self.data = res.result
     }
    })
   }
  }
 })
</script>
<style>
</style>

总结

到此这篇关于vue动态加载图片在跨域时无法显示的问题及解决方法的文章就介绍到这了,更多相关vue动态加载图片跨域无法显示内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!