-
Notifications
You must be signed in to change notification settings - Fork 540
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
歌手页面下拉分页有bug,数据全是重复的 #36
Comments
目前的master代码已经修复 |
欢迎提pr呀!
…---原始邮件---
发件人: "yzbgyq"<notifications@github.com>
发送时间: 2019年10月24日(星期四) 上午10:21
收件人: "sanyuan0704/react-cloud-music"<react-cloud-music@noreply.github.com>;
抄送: "sanyuan0704"<494130947@qq.com>;"Comment"<comment@noreply.github.com>;
主题: Re: [sanyuan0704/react-cloud-music] 歌手页面下拉分页有bug,数据全是重复的 (#36)
最近我也在做这个,发现你有些地方还需要优化,比如这个下拉分页就有问题,你要给他限制下,当第二页数据没有请求回来之前不让他再去请求
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
其实我是做了防抖处理的
…---原始邮件---
发件人: "yzbgyq"<notifications@github.com>
发送时间: 2019年10月24日(星期四) 上午10:21
收件人: "sanyuan0704/react-cloud-music"<react-cloud-music@noreply.github.com>;
抄送: "sanyuan0704"<494130947@qq.com>;"Comment"<comment@noreply.github.com>;
主题: Re: [sanyuan0704/react-cloud-music] 歌手页面下拉分页有bug,数据全是重复的 (#36)
最近我也在做这个,发现你有些地方还需要优化,比如这个下拉分页就有问题,你要给他限制下,当第二页数据没有请求回来之前不让他再去请求
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
其实这个下拉分页不能做防抖和节流处理,这个地方一定要确定他下一页数据成功加载之后,下下页的数据才能请求,可以设置一个锁的机制,如果用户网速过慢,他就会一直下拉一直下拉,导致页码重复叠加,数据重复,个人建议哈,不喜勿喷 |
@sanyuan0704 歌手页面,选择一个首字母,然后下拉分页,就有问题了,加载的数据没有首字母传参 |
是有的,可以去最新的线上地址看看------------------ 原始邮件 ------------------
发件人: "bihongbin3027"<notifications@github.com>
发送时间: 2019年11月4日(星期一) 下午2:33
收件人: "sanyuan0704/react-cloud-music"<react-cloud-music@noreply.github.com>;
抄送: "sanyuan0704"<494130947@qq.com>;"Mention"<mention@noreply.github.com>;
主题: Re: [sanyuan0704/react-cloud-music] 歌手页面下拉分页有bug,数据全是重复的 (#36)
@sanyuan0704 歌手页面,选择一个首字母,然后下拉分页,就有问题了,加载的数据没有首字母传参
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
应该是每次下拉页码 * offset,比如当前是第一页就是 1 * offset(30),假设offset为30,第二页就是2 *30这样子才对,数据才不会重复
The text was updated successfully, but these errors were encountered: