关于微信小程序加载更多和点击查看更多的代码(关于微信小程序加载更多和点击查看更多的代码区别)

网友投稿 948 2022-10-06

关于微信小程序加载更多和点击查看更多的代码(关于微信小程序加载更多和点击查看更多的代码区别)

关于微信小程序加载更多和点击查看更多的代码(关于微信小程序加载更多和点击查看更多的代码区别)

本文实例为大家分享了微信小程序加载更多功能实现的具体代码,供大家参考,具体内容如下

index.wxml代码如下

{{name.content}} {{loadText}} -

加载更多按钮绑定setLoading

index.js文件代码如下

Page({ data: { loadText:'加载更多', duanziInfo:[] }, //初始化请求 onLoad: function (res) { var that = this //内容 wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(res.data.result) //打印初始化数据 that.setData({ duanziInfo:res.data.result }) } }) }, //加载更多 setLoading: function(e) { var duanziInfoBefore = this.data.duanziInfo var that = this wx.showToast({ //期间为了显示效果可以添加一个过度的弹出框提示“加载中” title: '加载中', icon: 'loading', duration: 200 }) wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(duanziInfoBefore.concat(res.data.result)) //打印拼接之后数据 that.setData({ loadText:"数据请求中", loading:true, duanziInfo:duanziInfoBefore.concat(res.data.result), loadText:"加载更多", loading:false, }) } }) } })-

初始化和加载更多中的打印数据如下

程序员必备接口测试调试工具:立即使用Apipost = Postman + Swagger + Mock + Jmeter Api设计、调试、文档、自动化测试工具 后端、前端、测试,同时在线协作,内容实时同步

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:1321_一份BootLoader xmodem部分的协议分析
下一篇:报错:Flink cannot assign instance of org.apache.commons.collections.map.LinkedMap to field
相关文章

 发表评论

暂时没有评论,来抢沙发吧~