开发者问题收集

TypeError:在 React Native 中,undefined 不是对象(评估“this.state.Gas”)

2020-10-16
3552

在 React Native 中开发应用程序时,我尝试使用客户端的数据和产品类型进行动态警报,但是当我尝试构建连接字符串的变量时出现此错误。

TypeError:未定义不是对象(评估'this.state.Gas')

这是我的代码的相关部分:

渲染:

render() {
    return (
      <ScrollView style={styles.container}>
        <Text style={styles.Titulo}>Pide tu cilindro!</Text>
        <View style={styles.cuadros}>
          <View style={styles.gas}>
            <Image
              source={require("./assets/licuado-2kg.png")}
              style={{ height: 170, width: 170 }}
            />
          </View>
          <View style={styles.texto}>
            <Text style={styles.cilindros}>GASCO 2 kg</Text>
            <TouchableOpacity
              style={styles.btnpedir}
              onPress={this.confirm}
            >
              <Text style={styles.pedir}>Pedir</Text>
            </TouchableOpacity>
          </View>
        </View>
        
      </ScrollView>
    );
  }
}

构造函数:

constructor(props) {
    super(props);
    this.state = {
      email: "",
      displayName: "",
      Ciudad: "",
      Comuna: "",
      Direccion: "",
      Gas: "GASCO 2 kg"
    };
  }

函数:

confirm() {
    let variable = this.state.Gas
    let datos = this.state.displayName + this.state.Ciudad + this.state.Comuna + this.state.Direccion
    let texto = "Deseas confirmar el pedido de: ".concat(variable, " a: ", datos)
    Alert.alert(
      "Confirmar pedido",
      texto,
      [
        {
          text: "Confirmar",
          onPress: () => console.log("Confirmar"),
        },
        {
          text: "Editar datos",
          onPress: () => console.log("Editar"),
        },
        {
          text: "Cancelar",
          onPress: () => console.log("Cancelar"),
          style: "cancel",
        }
      ],
      { cancelable: false }
    );
  }

ComponentDidMount:

componentDidMount() {
    const { email, displayName } = firebase.auth().currentUser;
    this.setState({ email, displayName });

    firebase
      .firestore()
      .collection("Users")
      .where("Email", "==", email)
      .get()
      .then((snapshot) => {
        this.setState({ Doc: snapshot.docs[0].id });
        firebase
          .firestore()
          .collection("Users")
          .doc(this.state.Doc)
          .get()
          .then((doc) => {
            this.setState({
              Ciudad: doc.data().City,
              Direccion: doc.data().Direction,
              Comuna: doc.data().Comuna,
            });
          });
      });
  };

我该如何解决这个问题??

3个回答

我认为你应该绑定确认功能。

onPress={this.confirm.bind}

https://reactjs.org/docs/faq-functions.html#how-do-i-bind-a-function-to-a-component-instance

Che Huu
2020-10-16

React 处理程序不会自动绑定到它们所在的元素/类。为此,您可以使用以下代码在构造函数中绑定它们:

this.confirm = this.confirm.bind(this)

您也可以使用 ES6 作为另一种替代方案,例如:

<Button onClick={() => this.onConfirm()}
Niraj Patel
2020-10-16

根据您给出的代码。在您的代码构造函数中

constructor(props) {
  super(props);
  this.state = {
    email: "",
    displayName: "",
    Ciudad: "",
    Comuna: "",
    Direccion: "",
    Gas: "GASCO 2 kg"
  };
}

您已预定义“GAS”状态,但我们找不到“Gase”。 这是拼写错误问题还是其他问题?如果不是,那么您可以将构造函数更改为

constructor(props) {
  super(props);
  this.state = {
    email: "",
    displayName: "",
    Ciudad: "",
    Comuna: "",
    Direccion: "",
    Gas: "GASCO 2 kg",
    Gase: "",
  };
}

然后您在 componentDidMount 或其他地方进行更新。 有关更多信息,您可以查看 React 的 State and Lifecycle

Toriqul Islam Tareq
2020-10-16