码迷,mamicode.com
首页 > 其他好文 > 详细

React 组件的默认状态(defaultState)

时间:2017-11-30 12:00:47      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:super   markdown   ext   react   struct   defaults   tor   xtend   end   

基本类型组件:

class MyComponent extends React.Component {
    constructor(props){
        super(props);
        this.state={
            name:props.name
        };
    }
}

MyComponent.defaultProps={
    name:‘default name‘
};

功能型组件

const MyFunctionalComponent=(props)=>{
    return (
        <div>
            <p>{props.name}</p>
        </div>
    );
}

MyFunctionalComponent.defaultProps={
    name:‘default name‘
};

React 组件的默认状态(defaultState)

标签:super   markdown   ext   react   struct   defaults   tor   xtend   end   

原文地址:http://www.cnblogs.com/Saints/p/7927870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!