我已经和React一起工作了一段时间了,但是当我尝试在 redux 中更新状态或对 useState 做出反应时,我总是遇到这个问题。
Arrays.sort(arr, (a,b) -> a.compareToIgnoreCase(b)); //can compile
Arrays.sort(arr, (x) -> "a".compareToIgnoreCase(x)); // can't compile, since a method with
// two arguments is expected
我最初在没有setTimeout的情况下运行了代码,但显然在第一个实例中记录的值为null,但是在console.log运行后状态得到了更新,所以我将setTimeout用作后备测试代码位,因为setTimeout是异步的,因此非阻塞,但仍然只在setTimeout运行后才更新状态,为什么?我在做什么错了?
注意:我仅假设状态已更新,因为我将输入文件的值设置为 file.name ,以便使状态成为事实的唯一来源