我知道我们可以像{this.props.onPress}
一样调用函数,我们也可以使用此回调传递值吗?传递默认对象但我想使用此函数传递字符串值。这是可能的,我发布了我的代码以清除这种情况。
import Cbuttons from './../utils/CustomButtons'
class MainScreen extends Component {
_onBtnClick = event => {
console.log("Click on Button");
}
render() {
return (
<View style={customStyles.mainContainer}>
<Cbuttons btnName="MainScreen" onPress={this._onBtnClick}/>
<Cbuttons btnName="ScreenTwo" onPress={this._onBtnClick}/>
<Cbuttons btnName="ScreenThree" onPress=
{this._onBtnClick}/>
</View>
);
}
}
export default MainScreen;
in inCustom Buttons clsss
class MyButtons extends Component {
constructor(props){
super(props);
this.state={btnName:this.props.btnName};
}
render(){
return(
<TouchableOpacity onPress={this.props.onPress} >
<Text style={yourStyles.buttonText}> {this.props.btnName}</Text>
</TouchableOpacity>
);
}
}
export default MyButtons;
我想通过this.props.onPress返回btnName
答案 0 :(得分:2)
<Cbuttons btnName="MainScreen" onPress={ () => { this._onBtnClick(this.props.btnName)}/>
将该字段转换为一个函数,该函数通常使用参数调用_onBtnClick函数。
然后你会在_onBtnClick()方法中反映出来:
_onBtnClick = buttonName => {
console.log(`Click on Button ${buttonName}`);
}
答案 1 :(得分:1)
这解决了我的问题,谢谢@mcpolo
class MyButtons extends Component {
render(){
return(
<TouchableOpacity onPress={()=>{this.props.onPress(this.props.btnName)}} >
<Text style={yourStyles.buttonText}> {this.props.btnName}</Text>
</TouchableOpacity>
);
}
}