作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我总是对 $q 有问题
这是一个立即触发 .then
的例子
function doit() {
var deferred = $q.defer();
var modalInstance = $modal.open({
template: '<p>this is modal</p><a ng-click="ok()">ok</a>',
controller: function ($scope, $modalInstance) {
$scope.ok = function () {
$modalInstance.close();
};
}
});
modalInstance.result.then(function () {
console.log('ok');
deferred.resolve();
}, function () {
console.log('Modal dismissed');
});
return deferred.promise;
}
其他地方:
$scope.service.doit().then(
$scope.variable = 5
);
http://jsfiddle.net/IngoVals/stqwanhm/
我在尝试对另一个类似的设置建模时在 Fiddle 中得到了这个,其中 .then 根本没有触发。这是怎么回事?
最佳答案
它不会立即触发,只是您在 then 回调之外更新范围属性。这段代码:
$scope.service.doit().then(
$scope.variable = 5
);
不正确,应该是
$scope.service.doit().then(function() {
$scope.variable = 5
});
另一个问题是所谓的deferred anti-pattern .避免创建冗余的延迟对象:
function doit() {
return $modal.open({
template: '<p>this is modal</p><a ng-click="ok()">ok</a>',
controller: function ($scope, $modalInstance) {
$scope.ok = function () {
$modalInstance.close();
};
}
}).result.then(function () {
console.log('ok');
}, function () {
console.log('Modal dismissed');
});
}
关于javascript - 为什么我的 $q resolve 和 promise 不像我想的那样工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30004934/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!