-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当数据不是第一页的时候,调用手动刷新数据后index=1, 当上拉数据时index还是之前的。 #24
Comments
你说的是哪个index啊?我应该是只在renderItem方法里面传入index参数,页面的index都是组件内部维护的,没有传递到外部啊 |
看你的描述,可能是你从外部获取了一些组件内部自己维护的没有暴露的值,如果是这样的话可能会产生一些不可预知的问题.你的问题最后解决了吗? |
最后是调用你提供的手动刷新的方法解决的, 通过重新请求数据,将返回结果填入到res里面。唯一的遗憾就是不会触发下拉刷新动画。 |
好的 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
当数据不是第一页的时候,调用手动刷新数据后index=1, 当下拉数据时index还是之前的index而不是2, 这个如何处理?
1: 逻辑是这样的,我当前数据列表是第5页,所以我的index是5.
2: 当我点击手动刷新数据的时候我的index恢复到了1, 但是我上拉刷新时候index又是从第5页开始了, 而不是2,所以上拉加载更多还是走的是原来的逻辑,记录的是没手动刷新之前的index。
3: 请问我要怎样才能将加载更多的index变为我手动调用刷新后,按照当前重置的index走。
当前index = 5, 加载更多是=5, 手动刷新index = 1, 加载更多=5, 应该是2才对。
The text was updated successfully, but these errors were encountered: