如何将异步状态传递给子组件道具?

How to pass async state to child component props?

我是 React 新手,我正在尝试从 API 获取数据并将数据传递给子组件。我已经将数据传递给父组件上的状态,但是,当我将它作为 props 传递给子组件时,它会记录为一个空数组。我确定我忽略了一些简单的东西,但我不知道是什么,我的代码在下面

父组件

import React, {Component} from 'react';
import Child from '../src/child';
import './App.css';

class App extends Component {
    constructor(props) {
        super(props);

        this.state = {
          properties: []
        }
    }

    getData = () => {
        fetch('url')
        .then(response => {
            return response.text()
        })
        .then(xml => {
            return new DOMParser().parseFromString(xml, "application/xml")
        })
        .then(data => {
            const propList = data.getElementsByTagName("propertyname");
            const latitude = data.getElementsByTagName("latitude");
            const longitude = data.getElementsByTagName("longitude");

            var allProps = [];

            for (let i=0; i<propList.length; i++) { 
                allProps.push({
                    name: propList[i].textContent,
                    lat: parseFloat(latitude[i].textContent), 
                    lng: parseFloat(longitude[i].textContent)
                });
            }

            this.setState({properties: allProps});
        });
    }

    componentDidMount = () => this.getData();

    render () {
        return (
            <div>
                <Child data={this.state.properties} />
            </div>
        )
    }
}

export default App;

子组件

import React, {Component} from 'react';

class Child extends Component {
    initChild = () => {
        console.log(this.props.data); // returns empty array

        const properties = this.props.data.map(property => [property.name, property.lat, property.lng]);
    }

    componentDidMount = () => this.initChild();

    render () {
        return (
            <div>Test</div>
        )
    }
}

export default Child;

将child中的componentDidMount改为componentDidUpdate。

componentDidMount 生命周期方法在启动时只调用一次。然而,只要应用程序的状态发生变化,就会调用 componentDidUpdate 生命周期方法。由于 api 调用是异步的,因此在 api 调用的结果传递给 child.

之前,已经调用了 initChild() 函数一次

您可以使用条件渲染

import React, {Component} from 'react';

class Child extends Component {
    initChild = () => {
        if(this.props.data){
          const properties = this.props.data.map(property => [property.name, property.lat, property.lng]);
        }        
    }

    componentDidMount = () => this.initChild();

    render () {
        return (
            <div>Test</div>
        )
    }
}

export default Child;