Angularjs自定义指令Directive详解
今天学习angularjs自定义指令Directive。
Directive是一个非常棒的功能。可以实现我们自义的的功能方法。
下面的例子是演示用户在文本框输入的帐号是否为管理员的帐号"Admin"。
在网页上放一个文本框和一个铵钮:
<form id="form1" name="form1" ng-app="app" ng-controller="ctrl" novalidate> <input id="Text1" type="text" ng-model="Account" is-Administrator/> <br /> <input id="ButtonVerify" type="button" value="Verify" ng-click="Verify();" /> </form>
然后你需要引用angularjs的类库:
@Scripts.Render("~/bundles/angular")
以上是ASP.NET MVC bundle了。
定义一个App:
var app = angular.module('app', []);
定义一个控制器:
app.controller('ctrl', function ($scope) { $scope.Account; $scope.Verify = function () { if ($scope.form1.$valid) { alert('OK.'); } else { alert('failure.'); } }; });
下面是重点代码,自定义指令:
app.directive("isAdministrator", function ($q, $timeout) { var adminAccount = "Admin"; var CheckIsAdministrator = function (account) { return adminAccount == account ? true : false; }; return { restrict: "A", require: "ngModel", link: function (scope, element, attributes, ngModel) { ngModel.$asyncValidators.isAdministrator = function (value) { var defer = $q.defer(); $timeout(function () { if (CheckIsAdministrator(value)) { defer.resolve(); } else { defer.reject(); } }, 700); return defer.promise; } } }; });
演示:
相关推荐
youyouzouzou 2014-05-30
zbwroom 2014-05-30
zhenghao 2014-05-30
lizean 2014-05-30
lizean 2013-12-20
夏小球 2017-09-20
CrazyDogWang 2017-09-10
zbwroom 2017-09-10
youyouzouzou 2016-05-11
拓宇 2019-06-20
LDN0 2014-07-02
xingdongfang 2019-11-10
zhenghao 2014-05-30
老卫的技术站 2018-10-09
lujingjing 2019-06-28
Oranq 2017-03-22
CrazyDogWang 2016-06-07
lizean 2016-05-20