这篇文章主要讲解了“怎么用小程序实现轮播图”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用小程序实现轮播图”吧!那个先上效果:step1:页面index.wxml代码<!--&nb
这篇文章主要讲解了“怎么用小程序实现轮播图”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用小程序实现轮播图”吧!
那个先上效果:
step1:页面index.wxml代码
<!-- 轮播 --><swiper class='u-wrp-bnr' indicator-dots='true' autoplay='true' interval='5000' duration='1000' circular='true'> <block wx:for="{{bnrUrl}}" wx:for-index="index" wx:key="index"> <swiper-item> <image src='{{item.image}}' class='u-img-slide' ></image> </swiper-item> </block></swiper>
step2:配置信息也就是index.js
Page({ data: { bnrUrl: [], }, onLoad: function () { // 轮播 wx.request({ url: 'https://locally.uieee.com/slides', success (res) { // console.log(res.data) this.setData({ icons:res.data }) })})
step3:样式文件 index.wxss
.u-wrp-bnr { width: 100%; height: 300rpx; display: block; position: relative; background: #f0f0f0;}.u-img-slide { width: 100%; height: inherit; }
然后就是wx.require({})中传递一个对象,这个对象的属性分别对应不同的含义
wx.request({ url: 'test.PHP', //仅为示例,并非真实的接口地址 data: { x: '', y: '' }, header: { 'content-type': 'application/JSON' // 默认值 }, success (res) { console.log(res.data) }})
下面解释一下:
url:请求地址,必填
data:请求的参数
method:Http 请求方法,默认为get
dataType:返回的数据格式,默认为json
success:接口调用成功的回调函数
fail:接口调用失败的回调函数
complete:接口调用结束的回调函数(调用成功、失败都会执行)
感谢各位的阅读,以上就是“怎么用小程序实现轮播图”的内容了,经过本文的学习后,相信大家对怎么用小程序实现轮播图这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: 怎么用小程序实现轮播图
本文链接: https://lsjlt.com/news/341908.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0