我有一个react-native屏幕,在这里我想使用react-native-colapsible手风琴组件来显示资产列表。在必需的rendercontent
手风琴道具中,我传入了在屏幕组件内部定义的函数sellAsset
,在这里我使用this
关键字来引用屏幕组件。但这没用,总是告诉我this.sellAsset is not a function
。请参见下面的代码。
尝试了一些功能绑定,但是没有用。似乎传递给手风琴组件的this
没有指向屏幕组件。
那么如何正确调用this.sellAsset
?
renderContent(item) {
return (
<View style={[styles.imageContent]}>
<View style={[styles.detailContainer, {paddingVertical: 0}]}>
<Image source={getImage(_.get(item, ['Asset', 'image']))} resizeMode="contain" style={styles.assetImage}/>
</View>
<View style={styles.priceContainer}>
<CustomSignInButton
text="SELL"
onPress={() => {this.sellAsset();}}
buttonBackgroundColor="transparent"
buttonBorderColor="white"
buttonTextColor="white"
buttonHeight={30}
/>
</View>
</View>
);
}
render() {
return (
<LinearGradient colors={[Colors.splashGradient.top, Colors.splashGradient.middle, Colors.splashGradient.bottom]}
style={{flex: 1}}>
<View style={styles.container}>
<IOSStatusBar backgroundColor="transparent"/>
{this.state.transactionDetails !== null ?
(this.state.transactionDetails.length > 0 &&
<Accordion sections={this.state.transactionDetails} renderHeader={this.renderHeader}
renderContent={this.renderContent} underlayColor={Colors.rowSeparatorBlue}
/>
) : <View/>
}
</View>
</LinearGradient>
);
}
}
答案 0 :(得分:0)
如果我理解正确,那么SellAsset()是屏幕组件上的方法吗?
您有两个选择:
1。将这两种方法都绑定到此
class YourScreen extends React.Component {
constructor(props) {
this.renderContent = this.renderContent.bind(this);
this.sellAsset = this.sellAsset.bind(this);
}
sellAsset() { ... }
renderContent() { ... }
}
2。使用箭头功能
class YourScreen extends React.Component {
sellAsset = () => { ... }
renderContent = (item) => { ... }
}