美文网首页React
React(为组件设置默认属性值)

React(为组件设置默认属性值)

作者: 余生筑 | 来源:发表于2017-10-18 20:10 被阅读31次

    defaultProps

    class App extends Component {
        render() {
            let on="hello                       evryone";
            return (
    
                <div>
                {this.props.name}
                </div>
                );
            } 
        }
        App.defaultProps={
            name:"jack"
        }
    

    static defaultProps

        static defaultProps={
            name:"jack"
        }
        render() {      
            return (
                <div>
                {this.props.name}
                </div>
                );
            } 
        }
    

    相关文章

      网友评论

        本文标题:React(为组件设置默认属性值)

        本文链接:https://www.haomeiwen.com/subject/jggeuxtx.html