摘要:
React.PropTypes has moved into a different package since React v15.5. Please use the prop-types library instead. 在React中,随着项目复杂度的增加,我们难免会遇到一些和类型相关的bug 阅读全文
摘要:
发现React中自定义的html特性在render后是不现实,而且getAttribute方法也只能获取到undefined。 后来去stackoverflow提问,网友回答说: It depends on which attributes you are talking about. Usuall 阅读全文
摘要:
今天在练习React构建组件的时候遇到一个问题。 由于文档中反复提倡将组件尽可能按功能单位分解复用。在练习用React做一个todolist时候,我把todolist分解成两部分: class Todolist = class Writedown + class Todo; 其中 class Wri 阅读全文