JSX语法:html 和 javascript合起来
给html转换成jsx语句:转化时不能有俩平级标签,必须要有根目录节点
dom:链接html和javascript的接口
virtual dom:
react.render
Component: class / function
state : 数据 只存在于class component
props:传参, 跟function componet 有关系
class component 传值要加 this.props.name ,在function里直接props
,we can pass as many of props to a component as possible
State / setState
自己创建的function都需要自我绑定,
网友评论