<Text ref={(com)=>this.text = com} />
以下例子任何时候state的id改变,child里的componentWillUpdate会被触发
class ChildCom extends Component {
render() {
return (<View>这是子View,父级的state更改的时候,这里也会改变 {this.props.parentAttr}</View>);
}
}
class myCom extends Component {
render() {
return <ChildCom parentAttr={this.state.id} >;
}
}
<Child callback={this.callback.bind(this)} />
这里增加QAP通信之间的例子,具体参考之羽的JSSDK