1

我正在开发一个用于学习目的的 React Native 应用程序。现在我正在使用 TouchableWithoutFeedback 组件来响应用户交互。但我收到一个错误。

这是我的代码:

class Events extends React.Component {
  static navigationOptions = {
    title: "Events"
  };

  constructor(props) {
    super(props);
    this.state = {
      data: [
        {
          id: 1,
          name: "Name 1",
          image_url: "https://www.vkguy.co.uk/images/slideshow/05.jpg"
        },
        {
          id: 2,
          name: "Name 2",
          image_url: "https://www.vkguy.co.uk/images/slideshow/05.jpg"
        },
        {
          id: 3,
          name: "Name 3",
          image_url: "https://www.vkguy.co.uk/images/slideshow/05.jpg"
        }
      ]
    };
  }

  _handleLoadMore() {}

  renderItem(item) {
    return (
      <TouchableWithoutFeedback onPress={() => {
        
      }}>
        <View>
        <Card>
          <CardItem cardBody>
            <Image
              source={{ uri: item.image_url }}
              style={{ height: 200, width: null, flex: 1 }}
            />
          </CardItem>
          <CardItem>
            <Left>
              <Button transparent>
                <Icon active name="thumbs-up" />
                <Text>12 Likes</Text>
              </Button>
            </Left>
            <Body>
              <Button transparent>
                <Icon active name="chatbubbles" />
                <Text>4 Comments</Text>
              </Button>
            </Body>
            <Right>
              <Text>11h ago</Text>
            </Right>
          </CardItem>
        </Card>
        </View>
      </TouchableWithoutFeedback>
    );
  }

  render() {
    return (
      <View style={{ flex: 1, width: "100%" }}>
        <FlatList
          data={this.state.data}
          keyExtractor={item => item.id.toString()}
          renderItem={({ item }) => this.renderItem(item)}
          onEndReached={this._handleLoadMore}
        />
      </View>
    );
  }
}

export default Events;

当我单击视图时,出现此错误。

Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.

在此处输入图像描述

我的代码有什么问题,我该如何解决?

4

3 回答 3

1

不确定你是否解决了这个问题,但我也遇到了同样的问题。

很容易解决一个相当愚蠢的错误。

import React, { Component, TouchableWithoutFeedback } from "react";
import { View } from "react-native";

本来应该

import React, { Component } from "react";
import { View, TouchableWithoutFeedback } from "react-native";
于 2019-10-10T13:29:24.213 回答
0

如果不能看到你的进口,很难说。如果您确定要导出组件,那么它可能与命名导出与默认导出有关,或者忘记导出您的组件之一。检查以确保您使用的是默认导出...

export default ExampleComponent

您的导入不包括括号,看起来像

import ExampleComponent from '../../folder/file'

否则,如果您使用这样的命名导出...

export const ExampleComponent = () => {

您的导入包括括号

import { ExampleComponent } from '../../folder/file'

如果您提供包括导入在内的所有相关组件,可以为您提供更多帮助

于 2019-06-12T23:47:26.427 回答
0

首先,也许尝试打开 App.js 文件并修改这一行 class YourApp extends Component { 到 export default class YourApp extends Component<{}> {

于 2019-06-08T16:18:10.337 回答