我一直在寻找一个通用的解决方案来设置所有表单字段' autocomplete
到off
,
我提出了这个解决方案:
var app = angular.module('myApp', []);
app.directive('form', function() {
return function(scope, elem, attrs) {
elem.attr('autocomplete', 'off');
}
});
因为当angular在类似数组的方式中应用具有相同名称的指令时,可以保证每个表单元素autocomplete
都设置为关闭。
我想知道这种方法更好还是使用decorator
(或如何使用decorator
)?