2

我在 react native 中有一个组件,可以显示用户拥有的所有聊天记录。主要逻辑必须在 componentDidMount() 中。在这里,一个简化的版本:

componentDidMount(){
     ConnectyCube.chat.list({}, function(error, dialogs) {
        chats = dialogs.map(chat => {
            const opponentId = //some logic
            ConnectyCube.users.get(function(error, res){
                //some logic to populate chats 
            });
            }
        )

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

换句话说,主要问题是我不知道如何使用多个回调(用户拥有的每个聊天一个)来处理数据结构“聊天”,以便在最后设置状态。也许,我的问题是我正在以同步的方式思考,因为我是事件驱动方法的新手。任何帮助表示赞赏。

4

1 回答 1

1

这是一种跟踪剩余请求数量并在它们全部完成时触发一些代码的方法。请注意,这几乎正是Promise.all所做的。

//some kind of global or component level variable, tracks the number of pending requests left
var remaining = 0;

componentDidMount(){
     ConnectyCube.chat.list({}, function(error, dialogs) {
        // set remaining to how many dialogs there are
        remaining = dialogs.length;
        chats = dialogs.map(chat => {
            const opponentId = //some logic
            ConnectyCube.users.get(function(error, res){
                //some logic to populate chats

                // decrement remaining and check if we're done
                if (--remaining === 0) {
                  finalCallback(); // in here you do your setState.
                }
            });
            }
        )

        this.setState({chats: chats})
        }
    );
}
于 2019-02-22T21:42:25.943 回答