1. Angularjs $scope 里面的$apply 方法
$apply 方法作用:
Scope 提供$apply 方法傳播 Model 的變化
$apply 方法使用情景:
AngularJS 外部的控制器(DOM 事件玄组、外部的回調(diào)函數(shù)如 jQuery UI 空間等)調(diào)用了 AngularJS 函數(shù)之后耘戚,必須調(diào)用$apply半开。在這種情況下舶吗,你需要命令 AngularJS 刷新自已(模型、視圖等)歹颓,$apply 就是用來做這件事情的坯屿。
$apply 方法注意事項(xiàng):
只要可以,請(qǐng)把要執(zhí)行的代碼和函數(shù)傳遞給$apply 去執(zhí)行巍扛,而不要自已執(zhí)行那些函數(shù)然后再調(diào)用$apply领跛。 例如,你應(yīng)該像下面這樣來執(zhí)行你的代碼:
$scope.$apply(function() {
$scope.variable1 = 'some value';
executeSomeAction();
});
<script type="text/javascript">
var app = angular.module("myApp", []);
app.controller('firstController',function($scope){
$scope.name = 'hello';
setTimeout(function(){
//$scope.name = 'hi';
$scope.$apply(function(){
$scope.name = 'hi';
});
},2000); /*$timeout(function(){
$scope.name = 'hi'; },2000);*/
$scope.show = function(){
$scope.name = 'hi 點(diǎn)擊事件發(fā)生了';
};
});
</script>
2. Angularjs $scope 里面的$watch 方法
$watch 方法作用:
$watch 方法監(jiān)視 Model 的變化电湘。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標(biāo)題文檔</title>
<script type="text/javascript" src="../angular.min.js"></script>
</head>
<body>
<div ng-app="myApp">
<div ng-controller="CartController">
<p>價(jià)格:<input type="text" ng-model="iphone.money"></p>
<p>個(gè)數(shù):<input type="text" ng-model="iphone.num"></p>
<p>費(fèi)用:<span>{{ sum() | currency:'¥' }}</span></p>
<p>運(yùn)費(fèi):<span>{{iphone.fre | currency:'¥'}}</span></p>
<p>總額:<span>{{ sum() + iphone.fre | currency:'¥'}}</span></p>
</div>
</div>
<script type="text/javascript">
var app = angular.module("myApp", []);
app.controller('CartController',function($scope){
$scope.iphone = {
money : 5,
num : 1,
fre : 10
};
$scope.sum = function(){
return $scope.iphone.money * $scope.iphone.num; };
/*$scope.$watch('iphone.money',function(newVal,oldVal){
console.log(newVal);
console.log(oldVal);
},true);*/
$scope.$watch($scope.sum,function(newVal,oldVal){
//console.log(newVal);
//console.log(oldVal);
$scope.iphone.fre = newVal >= 100 ? 0 : 10;
});
});
</script>
</body>
</html>