W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
這個示例是嘗試實現(xiàn):
<div ng-controller="TestCtrl"> <if true="a == 1"> <p>判斷為真, {{ name }}</p> <else> <p>判斷為假, {{ name }}</p> </else> </if> <div> <p>a: <input ng-model="a" /></p> <p>name: <input ng-model="name" /></p> </div> </div>
考慮實現(xiàn)的思路:
scope
可以聯(lián)系起來。至于 scope
是在 link
中處理還是 controller
中處理并不重要。JS 代碼:
var app = angular.module('Demo', [], angular.noop); app.directive('if', function($parse, $compile){ var compile = function($element, $attrs){ var cond = $parse($attrs.true); var link = function($scope, $ielement, $iattrs, $controller){ $scope.if_node = $compile($.trim($ielement.html()))($scope, angular.noop); $ielement.empty(); var mark = $('<!-- IF/ELSE -->'); $element.before(mark); $element.remove(); $scope.$watch(function(scope){ if(cond(scope)){ mark.after($scope.if_node); $scope.else_node.detach(); } else { if($scope.else_node !== undefined){ mark.after($scope.else_node); $scope.if_node.detach(); } } }); } return link; } return {compile: compile, scope: true, restrict: 'E'} }); app.directive('else', function($compile){ var compile = function($element, $attrs){ var link = function($scope, $ielement, $iattrs, $controller){ $scope.else_node = $compile($.trim($ielement.html()))($scope, angular.noop); $element.remove(); } return link; } return {compile: compile, restrict: 'E'} }); app.controller('TestCtrl', function($scope){ $scope.a = 1; }); angular.bootstrap(document, ['Demo']);
代碼中注意一點,就是 if_node
在得到之時,就已經(jīng)是做了變量綁定的了。錯誤的思路是,在 $watch
中再去不斷地得到新的 if_node
。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: