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

我们想要将它转化为正常的图片地址,需要使用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 class="singerPosti">
      <li v-for="item in sortList" class="singerConten">
        <div class="avatar">
        <img :src="item.Fsinger_mid" />
        </div>
        <div class="list">
          <span>{{item.Fsinger_name}}</span>
        </div>

      </li>
    </ul>

Logo

前往低代码交流专区

更多推荐