Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 $http 进行 ajax 调用时是否需要调用 $scope.$apply ?
看起来不需要它,因为我的代码仍然有效,当我使用 JQuery ajax 时,我需要调用 apply 或者它不起作用。
所以为了完全确定,我现在可以跳过应用调用吗?
使用 AngularJS 版本 1.1.x,如果在 AngularJS循环之外Scope.$apply触发调用,则需要添加。$http$digest
Scope.$apply
$http
$digest
详细解释在这里:https ://stackoverflow.com/a/17271385/1418796