这篇文章主要介绍了微信小程序swiper使用网络图片不显示问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
wxml代码:
<view class="container"> <swiper indicator-dots="true}" autoplay="true" interval="3000" duration="1"> <block wx:for="{{imgUrls}}" wx:key="*this"> <swiper-item> <image src="{{item}}" width="355" height="150"></image> </swiper-item> </block> </swiper> </view>
js代码:
data: { imgUrls: [ "http://img0.imgtn.bdimg.com/it/u=2394972844,3024358326&fm=26&gp=0.jpg","http://img5.imgtn.bdimg.com/it/u=3008142408,2229729459&fm=26&gp=0.jpg","http://img4.imgtn.bdimg.com/it/u=2939038876,2702387014&fm=26&gp=0.jpg" ] }
结果:(无法显示,查看控制台无报错)
wxss:
.container{ width: 100%; } .container swiper{ width: 100%; }
能正常显示了:
原文链接:https://www.f2er.com/js/534783.html