Vue 中对图片地址进行拼接的方法

今天小编就为大家分享一篇Vue 中对图片地址进行拼接的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

拿到一组数据,其中的img地址是这样的

Vue 中对图片地址进行拼接的方法

我们想要将它转化为正常的图片地址,需要使用for循环来将图片拼接起来

getSingList(){ getSingerList().then((res) =>{ if (res.code==ERR_ok){ this.singers=res.data.list console.log(this.singers) for(var i=0;i<this.singers.length;i++){ this.singers[i].Fsinger_mid='//y.gtimg.cn/music/photo_new/T001R300x300M000'+this.singers[i].Fsinger_mid+'.jpg?max_age=2592000' } } }) } },

这样我们就可以正确输出 我们想要的img url地址了

<ul> <li v-for="item in sortList"> <div> <img :src="item.Fsinger_mid" ></img> </div> <div> <span>{{item.Fsinger_name}}</span> </div> </li> </ul>

Vue 中对图片地址进行拼接的方法

以上这篇Vue 中对图片地址进行拼接的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/d3c9f0c03747a88bd0559859469ca521.html