React设置默认props

转自Kindem的博客

如何初始化props

在ES6类中,我们使用defaultProps来设置props的默认值,该属性为静态属性,所以我们需要这样使用它:

import React from 'react';

class Example extends React.Component {
    static defaultProps = {
        propsName1: value1,
        propsName2: value2,
        ...
    }

    ...
    render() {
        return (
            ...
        );
    }
}

你可能感兴趣的:(React设置默认props)