程序媛

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 {
}
constructor(props){
        this.handleClick = this.handleClick.bind(this);
        //通过bind方法产生一个新的函数,且函数体和handleClick一样

        handleSubmit = ( ) => {
        }
}
上一篇下一篇

猜你喜欢

热点阅读