我想使用变量StatusASof如下所示在inserthtml函数中显示数据。
App.controller("SS_Ctrl", function ($scope, $http, $location, $window, $sce, $q) {
var ShiftDetails = [];
function getMAStatusASof(Id) {
var defer = $q.defer();
$http({
method: 'GET',
url: 'http://xx/api/Sxxx/GetMAStatusASof',
params: { Id: Id }
}).then(function successCallback(response) {
StatusASof = response.data;
alert("getMAStatusASof : " + StatusASof); --> Got data from API here in this alert.
defer.resolve(response);
}, function errorCallback(response) {});
}
function insertHtml(dates, ShiftDetails, Id) {
// var promise = getMAStatusASof(Id); promise.then(
var defer = $q.defer();
getMAStatusASof(Id);
alert(StatusASof); --> alert says empty here
defer.resolve();
var Content;
Content = '<table class="clsTable"> <tr> <td rowspan="2">Cases ' + $scope.StatusASof + ' </td> <td rowspan="2">Total</td> ';
for (var i = 0; i <= 6; i++) {
if (i == daySeq - 1) {
Content = Content + '<td colspan="3" style="background-color:red"> {{dates[ ' + i + ']}} </td> ';
}
}
}
但是显示结果时$ scope.StatusASof是未定义的。看起来$ q.defer对我不起作用。
仅从getMAStatusASof(Id)获取数据后,如何继续执行代码?
有人可以在这里帮忙吗?
答案 0 :(得分:1)
更新
您需要return defer.promise;
function getMAStatusASof(Id) {
var defer = $q.defer();
$http({
method: 'GET',
url: 'http://xx/api/Sxxx/GetMAStatusASof',
params: { Id: Id }
}).then(function successCallback(response) {
StatusASof = response.data;
alert("getMAStatusASof : " + StatusASof); --> Got data from API here in this alert.
defer.resolve(StatusASof);
}, function errorCallback(response) {
deferred.reject(false);
});
return defer.promise;
}
,您可以使用此功能,例如:
getMAStatusASof(Id).then(function(res){
if(res){
$scope.StatusASof = res;
}
})
答案 1 :(得分:0)
无需在此处使用$ q.defer()...
就做
function getMAStatusASof(Id) {
return $http({
method: 'GET',
url: 'http://xx/api/Sxxx/GetMAStatusASof',
params: { Id: Id }
})
.then(function successCallback(response) {
return response.data;
})
.catch(function errorCallback(response) {
return null; //Effectively swallow the error an return null instead.
});
}
然后使用
getMAStatusASof(Id).then(function(result) {
console.log(result);
});
//No .catch, as we've caught all possible errors in the getMAStatusASof function
如果您真的想使用$ q.defer(),则该函数将需要返回defer.promise,如Jazib所述。
但是正如我所说的,由于$ http已经返回了一个诺言,所以整个 $ q.defer() + 返回defer.promise 都是多余的。
>相反,仅当您需要包装的东西本身不返回承诺时才使用该构造。例如,当您打开启动模式时,希望在用户单击关闭按钮时得到通知
function notifyMeOfClosing() {
var deferred = $q.defer();
bootbox.confirm("This is the default confirm!", function(result){
if(result) {
deferred.resolve();
}
else {
deferred.reject();
}
});
return deferred.promise;
}
答案 2 :(得分:0)
无法使用以下代码(从“}”到“)”更新@DaniëlTeunkens帖子)。因此,添加为新答案。
getMAStatusASof(Id).then(function(result) {
// your code here. your HTML content.
....
console.log(result);
})
它将有望工作。