1
class MyComponent {
constructor(props){
super(props);
}
render() {
return <View />
}
}
class Test() {
constructor(props){
super(props);
this.onClick = this.onClick.bind(this);
}
onClick() {
this.my.setPorps({
show: true,
});
}
render(){
return <MyComponent ref={ ref => this.my = ref }/>
}
}
如果我引發的onClick功能,這將導致:ES6 setprops不是一個函數
不確定是不是(評估 '_this3.progressbar.setProps({ 禁用:真正})' 功能)
任何人都可以幫我嗎?非常感謝!
那麼,我該如何重新渲染部分組件而不是重新渲染所有dom。 – WhiteWater
不夠好,有沒有其他解決方法? – WhiteWater
你究竟想達到什麼目的? –