state为什么要放到 constructor中,直接在class中写state={...}不行吗
来源:7-12 setState何时会合并state
慕仰3306263
2020-08-22
写回答
3回答
-
yuexiaqingmiao
2022-08-04
可以放,以前记得react的文档里面有提到说只是一种提案。现在的react文档中已经放了一个mdn的链接
`If calling
bind
annoys you, there are two ways you can get around this. You can use public class fields syntax to correctly bind callbacks` --- https://reactjs.org/docs/handling-events.html00 -
慕粉3871079
2021-02-24
我试过是可以用的,但是规范上来讲,定义的变量还是写在构造函数里吧
00 -
双越
2020-08-22
直接在 class 中写 state={...} 那是静态属性,不是实例属性。
012020-09-29
相似问题