We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
问题描述 [问题描述:setState的异步更新数据 导致页面没有及时刷新 复现步骤 1 页面onPageScroll监滚动实现fixed定位
2 当达到滚动条件时setState一个变量为true
3 setState一个变量为true时实现fixed固定定位
4 因为setState的异步问题 即使执行了setSate 页面也不会立即更新 导致需要滚动多次才能实现fixed定位
if (e.scrollTop >= this.state.chose_scroll_top){ this.setState({isFixed:true}) }else{ this.setState({ isFixed: false }) }
期望行为 期望setState后立即更新视图 实现fixed定位
报错信息 无报错
系统信息
补充信息 根据是setState异步刷新数据的问题 而且根据我的需求 我也不能在setState里面的回调函数里面去写逻辑
The text was updated successfully, but these errors were encountered:
setState 虽然是异步的,但是会去更新视图,这里在滚动里不停 setState 的方式不推荐,建议考虑别的写法
setState
Sorry, something went wrong.
Hello~
您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。
如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。
Good luck and happy coding~
Merge pull request NervJS#595 from handsomeliuyang/58/harmony-hybrid-…
6241ea0
…3.6.29-liuyang 解决容器共用时,Taro的navigate和原生loadUrl混用问题
No branches or pull requests
问题描述
[问题描述:setState的异步更新数据 导致页面没有及时刷新
复现步骤
1 页面onPageScroll监滚动实现fixed定位
2 当达到滚动条件时setState一个变量为true
3 setState一个变量为true时实现fixed固定定位
4 因为setState的异步问题 即使执行了setSate 页面也不会立即更新 导致需要滚动多次才能实现fixed定位
期望行为
期望setState后立即更新视图 实现fixed定位
报错信息
无报错
系统信息
补充信息
根据是setState异步刷新数据的问题 而且根据我的需求 我也不能在setState里面的回调函数里面去写逻辑
The text was updated successfully, but these errors were encountered: