我正在使用Angular和Requirejs,我想在元素点击上绑定一个click事件,其中包含指令这样的名字,但是我的事件不起作用。我做错了什么?
return new Promise(function(resolve) {
resolve(function() {
console.log('rrrr');
return $timeout(function(){},100);
});
}
我在控制器中添加了指令作为依赖项。
define(['app'], function (app) {
app.register.directive('democlick', function () {
return {
template: '<div> This is a test </div>',
restrict: 'E',
link: function (scope, element, attrs) {
alert('hello world');
}
};
});
});