无法设置状态Firestore数据

时间:2019-08-15 10:44:31

标签: reactjs firebase google-cloud-firestore

我正在与Cloud Firestore一起进行React项目。我已经从Firestore成功获取数据。但是我无法将状态设置为这些数据。

如何设置这些数据的状态。

class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      items: []
    };
  }

  async componentDidMount() {
    const items = [];

    firebase
      .firestore()
      .collection("items")
      .get()
      .then(function(querySnapshot) {
        querySnapshot.forEach(function(doc) {
          items.push(doc.data());
        });
      });

    this.setState({ items: items });
  }

  render() {
    const items = this.state.items;
    console.log("items", items);

    return (
      <div>
        <div>
          <ul>
            {items.map(item => (
              <li>
                <span>{item.name}()</span>
              </li>
            ))}
          </ul>
      </div>
    );
  }
}

export default App;

1 个答案:

答案 0 :(得分:3)

您应该这样设置状态,

firebase
   .firestore()
   .collection("items")
   .get()
   .then((querySnapshot) => {  //Notice the arrow funtion which bind `this` automatically.
       querySnapshot.forEach(function(doc) {
          items.push(doc.data());
       });
       this.setState({ items: items });   //set data in state here
    });

组件首先使用初始状态进行渲染,然后首先使用items: []进行渲染。您必须检查数据是否存在

{items && items.length > 0 && items.map(item => (
      <li>
          <span>{item.name}()</span>
      </li>
))}