1. 程式人生 > >react es6 怎麼設定預設的 state和props的方法

react es6 怎麼設定預設的 state和props的方法

1state在constructor方法裡寫

constructor(props) {
    this.state = {
        n: ...
    }
}


2 寫default props有兩種方法

//1 在元件內部的使用static
...
static defaultProps = {
    name: ...
}

//2 在元件外部
Hello.defaultProps = {
    name: ...
}