小能豆

如何在 React 中等待 setState 完成后再触发函数?

javascript

我的情况如下:

  • 在 this.handleFormSubmit() 上我正在执行 this.setState()
  • 在 this.handleFormSubmit() 中,我调用 this.findRoutes(); - 这取决于 this.setState() 是否成功完成
  • this.setState(); 在调用 this.findRoutes 之前尚未完成......
  • 如何在调用 this.findRoutes() 之前等待 this.handleFormSubmit() 中的 this.setState() 完成?

低于标准的解决方案:

  • 将 this.findRoutes() 放在 componentDidUpdate() 中
  • 这是不可接受的,因为将有更多与 findRoutes() 函数无关的状态更改。当不相关的状态更新时,我不想触发 findRoutes() 函数。

请参阅下面的代码片段:

handleFormSubmit: function(input){
                // Form Input
                this.setState({
                    originId: input.originId,
                    destinationId: input.destinationId,
                    radius: input.radius,
                    search: input.search
                })
                this.findRoutes();
            },
            handleMapRender: function(map){
                // Intialized Google Map
                directionsDisplay = new google.maps.DirectionsRenderer();
                directionsService = new google.maps.DirectionsService();
                this.setState({map: map});
                placesService = new google.maps.places.PlacesService(map);
                directionsDisplay.setMap(map);
            },
            findRoutes: function(){
                var me = this;
                if (!this.state.originId || !this.state.destinationId) {
                    alert("findRoutes!");
                    return;
                }
                var p1 = new Promise(function(resolve, reject) {
                    directionsService.route({
                        origin: {'placeId': me.state.originId},
                        destination: {'placeId': me.state.destinationId},
                        travelMode: me.state.travelMode
                    }, function(response, status){
                        if (status === google.maps.DirectionsStatus.OK) {
                            // me.response = response;
                            directionsDisplay.setDirections(response);
                            resolve(response);
                        } else {
                            window.alert('Directions config failed due to ' + status);
                        }
                    });
                });
                return p1
            },
            render: function() {
                return (
                    <div className="MapControl">
                        <h1>Search</h1>
                        <MapForm
                            onFormSubmit={this.handleFormSubmit}
                            map={this.state.map}/>
                        <GMap
                            setMapState={this.handleMapRender}
                            originId= {this.state.originId}
                            destinationId= {this.state.destinationId}
                            radius= {this.state.radius}
                            search= {this.state.search}/>
                    </div>
                );
            }
        });

阅读 55

收藏
2024-06-03

共1个答案

小能豆

setState()有一个可选的回调参数,你可以使用它来实现这一点。你只需要稍微修改一下代码,如下所示:

// Form Input
this.setState(
  {
    originId: input.originId,
    destinationId: input.destinationId,
    radius: input.radius,
    search: input.search
  },
  this.findRoutes         // here is where you put the callback
);

请注意,对的调用findRoutes现在位于setState()调用内部,作为第二个参数。
没有,()因为您正在传递函数。

2024-06-03