1

我是新来的反应本地人。我正在尝试推送到另一个页面。但我收到错误说

Undefined is not a function(evaluating '_this2._goToProductListing('app.productListing'{title:item.title})')

我的代码是这个

 _renderContent(section, i, isActive) {
        return (
            <View>
                <List>
                    {section.content.map((item, i) => {
                        return(
                            <ListItem containerStyle={styles.categoryLists}
                                      onPress={() => this._goToProductListing('app.productListing',{title:item.title})}
                                      key={i} title={item.title}
                            />
                        );
                    })}
                </List>
            </View>
        );
    }


    //Send to product list page
    _goToProductListing = (screen,data) => {
        this.props.navigator.push({
            screen: screen,
            title: data.title,
            passProps: {
                data: data
            }
        });
    };
render() {
        return (


            <View style={stylesheet.accrodianWraper}>

                <ScrollView>
                    <Accordion
                        activeSection={this.state.activeSection}
                        sections={CONTENT}
                        touchableComponent={TouchableOpacity}
                        renderHeader={this._renderHeader}
                        renderContent={this._renderContent}
                        duration={0}
                        onChange={this._setSection.bind(this)}
                    />
                </ScrollView>
            </View>
        )
    }

谁能告诉我我做错了什么?我该如何解决?

对于我正在使用的导航wix react native navigation,该页面app.productListing也注册在 index.js 中。我正在为手风琴使用 react-native-collapsible,B

4

1 回答 1

3

也尝试_renderContent使用箭头函数创建 a 属性:

_renderContent = (section, i, isActive) => {
于 2018-05-20T12:52:49.190 回答