无法调用RNFirebaseFirestore.documentSet null

时间:2019-02-18 14:10:57

标签: react-native react-native-firebase

请使用附件中的屏幕截图,以便在使用Firestore在服务器上设置数据时出现错误。以下是代码

import firebase from 'react-native-firebase';

constructor() {
    super();
    this.ref = firebase.firestore().collection('Product');
  }


render() {
    return (
      <View>
        <Button title="Submit" onPress={this._navigateClick} />
      </View>
    );
  }

_navigateClick = () => {
  this.ref.add({
    Desc: "Hi Hello How Are you ?",
    Img: "",
    Name:"Chair 123"
  }); 
};

enter image description here

1 个答案:

答案 0 :(得分:0)

我有同样的错误。请创建名称为“产品”的集合,并添加一个虚拟文档。然后尝试。