💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
> 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"} ] } }) ```