问题描述:
uni-app 微信小程序,页面滑到底部,onReachBottom 没有生效
解决:
最外层容器设置 min-height: 101vh
代码:
pages.json
配置
{"path": "","style": { "navigationBarTitleText": "列表","onReachBottomDistance": 100 // 重点}
}
使用 onReachBottom
的页面:
import { onReachBottom } from '@dcloudio/uni-app'onReachBottom(() => {// 你的代码逻辑if (parameters.value.current >= pages.value) { return }parameters.value.current += 1toSearch.value()
})<style lang="scss" scoped>
.container {height: 100%;min-height: 101vh; // 重点overflow-y: scroll;
}
</style>