0

我有一个 react-native 屏幕,我想在其中使用 react-native-collapsible 手风琴组件来显示资产列表。rendercontent在手风琴的 required属性中,我传入了一个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>
    );
  }
}
4

1 回答 1

2

如果我理解正确, sellAsset() 是您屏幕组件上的一种方法?

你有两个选择:

1. 将这两个方法绑定到 this

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) => { ... }
}
于 2019-01-10T07:56:37.867 回答