我有一个指令:
app.directive('testDir', [function () {
return {
require: '?ngModel',
link: function ($scope, elm, attr, ngModel) {
var abc=attr.testDir;
var def=< The value zzz >
}
};
}])
我知道我可以这样称呼:
<div test-dir='abcd'>xx</div>
如果我还需要传递参数“zzz”怎么办。如何将多个参数传递给我的指令?