react新手。关于react属性有点不明白:
class MyComponent extends React.Component {
this.displayName = 'MyComponent';
}
MyComponent.displayName = 'MyComponent';
MyComponent.defaultProps = {
displayName : 'MyComponent'
}
三个displayName 都是react的属性吗?是同一个属性吗?或者有什么区别?
class是构造函数的ES6写法,实际上和
function MyComponent
是一样的。第一种写法我试了一下,是会报错的SyntaxError:Unexpected token;
第二种和第三种写法都是是为构造函数添加一个共有静态属性。defaultProps比较特别,react组件如果没有某个props,就会从这里面读取。
在class里面定义属性的写法一般是这样的: