小程序
小游戏
企业微信
微信支付
扫描小程序码分享
刚接触微信开发工具,工具的版本是最新的,在使用swiper过程中,发现随便咋的就是图片显示不出来,如下图。
1、图片URL用绝对路径和直接用网络上的图片,都无法显示。
2、swiper的和其对应的容器宽度都有按网上的方法设置为100%,还是无法显示。
求教各位大神该如何最终解决呢?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
这个问题,我找到原因了,是我的swiper里少了一段image
改成下面这样就正常了
<swiper indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
<block wx:for="{{imageUrl}}" wx:key="*this" >
<swiper-item>
<view class="swiper-item {{item}}" width="355" height="150">
<image src="{{item}}"> </image></view>
</swiper-item>
</block>
</swiper>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你路径应该是错了吧
图片路径错拉
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
这个问题,我找到原因了,是我的swiper里少了一段image
改成下面这样就正常了
<swiper indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
<block wx:for="{{imageUrl}}" wx:key="*this" >
<swiper-item>
<view class="swiper-item {{item}}" width="355" height="150">
<image src="{{item}}"> </image></view>
</swiper-item>
</block>
</swiper>
你路径应该是错了吧
图片路径错拉