gpt4 book ai didi

angularjs - 从 Restangular POST 获得响应

转载 作者:行者123 更新时间:2023-12-04 09:40:54 25 4
gpt4 key购买 nike

发送 Retangular POST 后如何获取响应对象?

 firstAccount.post("Buildings", myBuilding).then(function() {
console.log("Object saved OK");
}, function() {
console.log("There was an error saving");
});

我正在尝试获取新的对象 ID。

谢谢。

最佳答案

我是 Restangular 的创建者。弗利姆是对的:)。

在 promise 中,您将获得从服务器返回的对象:)

firstAccount.post("Buildings", myBuilding).then(function(addedBuilding) {
console.log("id", addedBuilding.id);
}, function() {
console.log("There was an error saving");
});

谢谢!

关于angularjs - 从 Restangular POST 获得响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17135998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com