Line 23:9: Do not mutate state directly. Use setstate()Line 24:9: Do not mutate state directly. Use setstate()Line 25:9:Do not mutate state directly. use setstate(Line 26:9: Do not mutate state directly. Use setstate(Compiled with warnings. 第23:9行:不要直接改变状
时间: 2023-06-11 20:09:22 浏览: 151
react学习笔记之state以及setState的使用
态,使用setState()。第24:9行:不要直接改变状态,使用setState()。第25:9行:不要直接改变状态,使用setState()。第26:9行:不要直接改变状态,使用setState()。这些警告意味着在代码中直接修改了组件的状态,而应该使用setState()方法来更新状态。直接修改状态可能会导致不可预料的结果或错误。应该在组件中使用setState()方法来更新状态。
阅读全文