如何使用 ngTouch ,但有选择地禁用某些元素?也就是说,对于某些元素,我想使用原始ngClick
指令而不是ngTouch提供的指令。像这样:
<button ng-click-original="myClickFn()">click me</button>
答案 0 :(得分:9)
问题是,一旦您在依赖项中包含ngTouch
模块,其ngClick
ngTouch.directive('ngClick'
版本将覆盖角度核心的原始ngClickDirective。因此,所有点击都将由ngTouch的ng-click
版本处理,因此您需要在模块中修饰ngCLick以处理您的场景。我可以在这里想到几种方法: -
方法1 - 创建自己的指令
如果创建ng-click-orig
,可能不会在ng
前面添加前缀,因为它是自定义指令。
.directive('ngClickOrig', ['$parse', function($parse) {
return {
compile: function($element, attr) {
var fn = $parse(attr["ngClickOrig"]);
return function handler(scope, element) {
element.on('click', function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
};
}
};
}]);
<强> Demo 强>
方法2: - 使用装饰器进行ng-Click指令
另一种方法是在ngClickDirective上创建装饰器,查找特定属性notouch
并执行常规点击或使用ngTouch提供的原始属性。
.config(function($provide){
//Create a decoration for ngClickDirective
$provide.decorator('ngClickDirective', ['$delegate','$parse', function($delegate, $parse) {
//Get the original compile function by ngTouch
var origValue = $delegate[0].compile();
//Get set the compiler
$delegate[0].compile = compiler;
//return augmented ngClick
return $delegate;
/*Compiler Implementation*/
function compiler(elm, attr){
//Look for "notouch" attribute, if present return regular click event,
//no touch simulation
if(angular.isDefined(attr.notouch)){
var fn = $parse(attr["ngClick"]);
return function handler(scope, element) {
element.on('click', function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
}
}
//return original ngCLick implementation by ngTouch
return origValue;
}
}]);
});
就像说明装饰器在第一次使用指令之前不会运行,它只会运行一次。
用法示例: -
<button ng-click="myClickFn()" notouch>click me</button> <-- see notouch attribute -->
<button ng-click="myClickFnTouch()">click me</button>
<强> Demo-Decorator 强>