如何在角度中装饰formDirective以设置自动完成功能?

时间:2017-05-21 05:08:35

标签: angularjs forms autocomplete decorator directive

我一直在寻找一个通用的解决方案来设置所有表单字段' autocompleteoff, 我提出了这个解决方案:

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

    app.directive('form', function() {
      return function(scope, elem, attrs) {
        elem.attr('autocomplete', 'off');
      }
    });

因为当angular在类似数组的方式中应用具有相同名称的指令时,可以保证每个表单元素autocomplete都设置为关闭。

我想知道这种方法更好还是使用decorator(或如何使用decorator)?

0 个答案:

没有答案