ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
> wxml ``` <swiper indicator-dots="true" autoplay="true" current="0" interval="2000" duration="1000" bindchange=""> <block wx:for="{{imgUrl}}"> //请求json中的数据动态获取图片 <swiper-item class="" item-id=""><image src="{{item.src}}"></image></swiper-item> </block> </swiper> ``` `indicator-dots`: 是否需要焦点 `autoplay`: 是否需要自动播放 `interval`: 自动播放的速度 > js ``` Page({ /* 将图片地址存在imgUrl中等待动态获取 */ data:{ imgUrl:[ {src: "/images/1.jpg"}, {src: "/images/2.jpg"}, {src: "/images/3.jpg"} ] } }) ```