我有一个指令:
app.directive('testDir', [function () {
return {
require: '?ngModel',
link: function ($scope, elm, attr, ngModel) {
var abc=<some string passed from the html>;
}
};
}])
我希望指令是这样的:
<div testDir='abcd'>xx</div>
在我的指令中如何读取值“abcd”?