多个http发布请求

时间:2016-07-13 13:15:40

标签: javascript angularjs http

我正在开发一个Angular js应用程序,我想做的就是按特定顺序创建多个http post请求。

我有人,每个人都有多个地址和多个电话。所以我想

  • 使用http请求
  • 在数据库中创建收件人
  • 完成后,取回数据库中创建的地址的ID
  • 为电话做同样的事情
  • 完成所有这些操作后,在数据库中创建Person并引用相应的地址和电话。

这样做的最佳方式是什么?这样它会起作用,但我认为有更好的选择

//create the address
$http.post(API_ADDRESS, {
    params: {
        // ...
    }
})
.then(function(res) {
    // create the telephone
    // create the Person in the then function
}, function(error) {
    console.log(error);
});

0 个答案:

没有答案