-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
useRequest 在 React 18 部分场景下不兼容, 存在严重问题 #2501
Comments
我也遇到了,这种情况。 |
希望早点修复 |
我现在临时解决办法,就是换了react-query ,一切都正常了,符合预期 |
@PalePlain @lidakai 来,帮忙整个 demo,我来看一下 |
Hello @PalePlain. Please provide a online reproduction by forking this link https://codesandbox.io/s/ok2fe or a minimal GitHub repository. Issues labeled by 你好 @PalePlain, 我们需要你提供一个在线的重现实例以便于我们帮你排查问题。你可以通过点击 此处 创建一个 codesandbox 或者提供一个最小化的 GitHub 仓库。3 天内未跟进此 issue 将会被自动关闭。 |
稍等, 我写个 demo |
react 18 demo: https://is.gd/lZJgyH 将一个节点拖拽到另一个容器中, 表现为 loading 不消失; 而将 react 版本更换为 react 17 后则表现正常; |
继续跟进 ISSUE: #2514 |
useRequest:
Fetch.ts
文件:useRequestImplement.ts
文件:当触发用户交互行为, 如拖拽行为时:
React 17 会按照下列顺序执行:
drag文件
Effect CleanupuseRequest
Hook Effect Cleanup, 此时会触发useRequestImplement.ts
useUnmount
回调函数, 即fetchInstance.cancel()
, 而执行fetchInstance.cancel()
后会使得this.count + 1
, 此时this.count
值为 1this.count
再次 + 1, 值为 2, 因此 currentCount 的值也为 2, 因此会按照预期执行 onSuccess 回调函数符合预期
React 18 执行顺序 :
this.count + 1
, 值为 1, 因此 currentCount 的值为 1const res = await servicePromise;
触发异步可中断更新
3..
时间切片
调度其他优先级任务, 执行 Effect 链条 Cleanup:useDragPreCheck
Hook Effect Cleanup ->useRequest
Hook Effect Cleanup, 此时执行fetchInstance.cancel()
,this.count + 1
, 此时this.count
值为 2异步
行为完成后, 回到上下文继续执行逻辑, 此时判断currentCount !== this.count
成立, currentCount 由于闭包存在, 值为1, 而this.count
值为 2, 因此返回了new Promise(() => {});
导致onSuccess
未被执行在页面中的表现则为
onSuccess
未触发,loading
不消失, 数据未处理相关 demo (React 18.2.0 + ahooks 3.7.10) : https://is.gd/lZJgyH
将一个节点拖拽到另一个容器中, 表现为 loading 不消失; 而将 react 版本更换为 react 17 后则表现正常;
The text was updated successfully, but these errors were encountered: