Jsx语法
2018-06-30 本文已影响8人
ZhongQw
在jsx文件里写style:
style = {{display : 'none'}}
组件类中添加proptype
static propTypes = {
comment: PropType.object.isrequired
}
组件对象添加state属性
state = {
comment:[
xxx
...
]
}
将数组变为标签
数组中的标签必须要有一个key
comment.map((c,index) => <CommenItem comment = {c} key = {index} />)
一个自定义的方法
由于this
this
handleSubmit {
}
- 箭头函数(没有自己的this,会从外围(全局)找)
constructor(props){
this.handleClick = this.handleClick.bind(this);
//通过bind方法产生一个新的函数,且函数体和handleClick一样
handleSubmit = ( ) => {
}
}