我正在开发一个Angular js应用程序,我想做的就是按特定顺序创建多个http post请求。
我有人,每个人都有多个地址和多个电话。所以我想
这样做的最佳方式是什么?这样它会起作用,但我认为有更好的选择
//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);
});