1. 父组件如何获取子组件的方法以及属性?
1.)父组件:
render( ){
console.log( this.refs.getmethod );
return (
<div>
<children ref="getmethod" />
</div>
)
}
2.)子组件:
属性
方法