我在控制器中遇到問題,並且承諾。基本上我試圖根據我對我的承諾productData
收到的回覆創建if語句。問題在於承諾內存在變量productData
,但在它沒有之後 - 變爲空。是否因爲範圍?承諾範圍變量
這裏是我的代碼:
var productData = null;
ProductService
.queryByGroup(selectedGroup.id)
.then(function(response) {
productData = response.data;
});
if (productData.hasOwnProperty('conditions') == false) {
// Send a request to the server asking for the medicine ids of the selected group
Meds
.getAllProductsById(selectedGroup.id)
.then(function(response) {
//SOME CODE logic
}, function(response) {
$log.debug('Unable to load data');
$log.debug(response.debug);
});
} else {
console.log("call modal");
}