gpt4 book ai didi

javascript - Angular - 如何将参数传递到延迟 promise 中?

转载 作者:行者123 更新时间:2023-12-03 07:35:40 27 4
gpt4 key购买 nike

在这里开发我的第一个 Angular 应用程序,如果问题不清楚,请原谅。

我有一项服务 gets从我的 api 使用 header 中的组变量。

var theReq = {
method: 'GET',
url: API + '/homeq',
headers: {
'group': 'mobile'
}
};

$http(theReq)
.then(function(data){
deferred.resolve(data);
})

self.getResults = function() {
return deferred.promise;
}

我面临的问题是使用 group我指定的变量而不是预设的变量。

我当然可以将它传递到该函数(即 self.getResults = function(groupToGet) ),但它如何从那里到达 theReq我处理的?

感谢任何帮助。

谢谢。

最佳答案

您需要按以下方式修改您的函数。 $q 是创建延迟对象的服务。您需要注入(inject)它。

self.getResults = function(groupToSet) {

var deferred = $q.defer();
var theReq = {
method: 'GET',
url: API + '/homeq',
headers: {
'group': groupToSet
}
};

$http(theReq)
.then(function(data){
deferred.resolve(data);
})


return deferred.promise;
}

你可以使用 Promise 作为

self.getResults("mobile").then(function(data) {
//success function here.
}).catch(function(error) {
//error function here
});

关于javascript - Angular - 如何将参数传递到延迟 promise 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35625319/

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