属性使用:
#键值对的使用
<HelloWorld name="Tim" />
# 展开语法使用,就是大括号中... 是将对象props属性就行了一一对应写法
# 意思就是这样的写法(<HelloWorld one="123" two=321 />)
var props = {
one: '123',
two: 321
}
<HelloWorld { ...props } /> or <HelloWorld { ...this.state } />
#第3种在组件外部使用属性不建议使用,这样违背了react的设计原则
var instance = React.render( <HelloWorld> </HelloWorld> ,document.body);
instance.setProps({name: "Tim"});