<Button type="primary" onClick={this.showModal}>Open a modal dialog</Button>
onClick={this.showModal}? ---------》showModal()方法在組件里面render外面
onClick={showModal}? ? ? ? ------》showModal()方法在組件里面render里面(注意不需要加 this)
{
info(){ console.log(0); }
main(){
this.info();
},
在組件里面render外面寫方法;直接像上面的寫法;不需要function;
但是在render里面寫方法時必須加上function;
同時在組件里面render外面的方法調(diào)用組件里面render外面的方法時涧偷;使用this.info()這樣;
}