后端返回的接口数据,图片路径,有的是相对路径,有的是带http的路径
得处理一下,如果是相对路径就拼上服务器的地址(xxx),如果是带http的路径就正常显示
方法:
javascript
imageUrl(url){
let str = RegExp('http');
let newUrl;
str.test(url) ? newUrl = url : newUrl = xxx + url;
// xxx就是需要拼接的地址
console.log(newUrl);
return newUrl
}
测试了一下,一个是相对路径(/static/img/logo.png),一个是带http的路径
打印出来是没问题的
javascript
var imgSrc = '/static/img/logo.png'
// www.xxx.com/static/img/logo.png
var imgSrc = 'https://img-home.csdnimg.cn/images/20201124032511.png'
// https://img-home.csdnimg.cn/images/20201124032511.png
// 调用
this.imageUrl(imgSrc)