**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
bug useEffect
我尝试将参数传递给函数,但仍然无法
**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
bug useEffect
我尝试将参数传递给函数,但仍然无法
1条答案
按热度按时间1tuwyuhd1#
如果查看documentation,可以看到removeAllListeners不接受任何参数,但您在那里传递了一个参数。
另外,想想你想做什么,正在尝试做什么。
您正在调用EventRegister.removeAllListeners并正在传入侦听器。是否只想删除特定的侦听器?
如果是这样,则应该调用removeEventListener。