从react-native发送多个API调用

时间:2018-06-03 17:10:39

标签: react-native

在我的应用程序中,在componentDidMount()中,我想调度一个有2个API调用的动作。在angular,with observables中,我们可以使用forkJoin()来实现这一点。在react / react-native中,我们有一个类似forkJoin()的方法吗?如果现在,调用2个API端点的好习惯是什么?

1 个答案:

答案 0 :(得分:1)

同样使用Promise链接会很有用。

someApiCall().then(function (bun) {
    return addSausage(bun)
}).then(function (bunWithSausage) {
    return addSauce(bunWithSausage)
}).then(function (hotdog) {
    return hotdog
})