reactjs – 如何使用TypeScript在React组件类上声明defaultProps?

前端之家收集整理的这篇文章主要介绍了reactjs – 如何使用TypeScript在React组件类上声明defaultProps?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都可以在TypeScript中显示在React组件类上定义defaultProps的示例吗?
interface IProps {}
interface IState {}

class SomeComponent extends Component<IProps,IState> {
    // ... defaultProps ?
    // public defaultProps: IProps = {}; // This statement produces an error

    constructor(props: IProps) {
        super(props);
    }

    // ...
}
您可以通过以下方式定义默认道具:
export class Counter extends React.Component {
  constructor(props) {
    super(props);
    this.state = {count: props.initialCount};
    this.tick = this.tick.bind(this);
  }
  tick() {
    this.setState({count: this.state.count + 1});
  }
  render() {
    return (
      <div onClick={this.tick}>
        Clicks: {this.state.count}
      </div>
    );
  }
}
Counter.propTypes = { initialCount: React.PropTypes.number };
Counter.defaultProps = { initialCount: 0 };

这在TypeScript中相当于将defaultProps定义为类体内的静态字段:

class SomeComponent extends Component<IProps,IStates> {
    public static defaultProps: IProps = { /* ... */ }; 
    // ...
}
原文链接:https://www.f2er.com/react/301331.html

猜你在找的React相关文章