1

我正在尝试呈现 2 列平面列表。我使用的数组没有 id,只有字符串组件。我收到错误“必须在文本组件中呈现文本字符串”

  state = {
    groups: [],
  };
  constructor(props) {
    super(props);
    this.userId = firebase.auth().currentUser.uid;
    this.matches = firestore()
      .collection("users")
      .doc(this.userId)
      .onSnapshot((doc) => {
        this.setState({
          groups: doc.data().matches,
        });
      });
  }
  render() {
    return (
      <View style={styles.container}>
        <FlatList
          contentContainerStyle={styles.list}
          data={this.state.groups}
          keyExtractor={(item, index) => item.id}
          renderItem={({ item }) => (
              <View style={styles.item}>
                <Text style={styles.title}>{}</Text>
                <Image />
              </View>
          )}
        />
        );
        <StatusBar style="auto" />
      </View>
    );
  }
}

4

2 回答 2

2

);您应该先 删除两个符号<StatusBar style="auto" />

于 2020-08-17T23:50:13.160 回答
1

此错误是当您<View>像这样多次使用组件时

render(){
    return(
      <View>
       <Text>Testing purpose</Text>
      </View

      <View>
       <Text>Testing purpose Again</Text> 
      </View>
     )}

或者当您忘记使用“/”关闭任何组件时</View>

于 2020-08-18T06:59:44.140 回答