- 概念
onReachBottom:微信小程序原生MINA框架中提供的有的页面上拉触底事件的处理函数
onPullDownRefresh:监听用户下拉动作
详细信息见微信开发平台:https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html
- 原因:onReachBottom 和onPullDownRefresh是项目创建时,小程序就自己给我们生成了,所以js页面后面的 onReachBottom 和onPullDownRefresh会覆盖掉我们前面写的onReachBottom 和onPullDownRefresh;导致最后无法出现效果。
图解如下:
自己写的onReachBottom代码是在90行
页面生成得时候自带的onReachBottom 和onPullDownRefresh在135行
所以我们上面写的onReachBottom就被覆盖了。