将jQuery插件转换为AngularJS指令

时间:2015-05-26 19:15:03

标签: angularjs angularjs-directive jquery-inputmask

我正在尝试使用输入掩码jQuery plugin作为指令,但在Chrome的控制台错误中收到以下错误。

TypeError: Cannot read property 'length' of undefined

我的代码

JS

var app = angular.module('app', ['ngResource']);

app.directive('inputMask', function(){
    return {
        restrict: 'A',
        link: function(scope, element){
             element.mask();
        }
    }
})

HTML

<input type="text" class="form-control input-mask" data-input-mask data-mask="{mask: 00/00/0000}" placeholder="eg: 23/05/2014">

http://plnkr.co/edit/Kp3SYS0cbIfVm1gTwtE0?p=preview

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

长度错误是因为element.mask()方法需要一个带有要使用的掩码字符串的属性。 (在这种情况下&#39; 00/00/0000&#39;)。 所以你必须改变一些事情,首先是你的指令:

var app = angular.module('app', ['ngResource']);

app.directive('inputMask', function(){
    return {
        restrict: 'A',
        scope: {
          inputMask: '='
        },
        link: function(scope, element){
          element.mask(scope.inputMask.mask);
        }
    }
})

然后在html中,你可以在元素中设置掩码。

<input type="text" class="form-control" data-input-mask="{mask: '00/00/0000'}" placeholder="eg: 23/05/2014">

这是一个Plunker工作:

http://plnkr.co/edit/BbJtsF9mWx4n29CfZajF?p=preview