gpt4 book ai didi

javascript - 用于匹配多个属性的 Angular 指令

转载 作者:行者123 更新时间:2023-11-30 11:50:10 26 4
gpt4 key购买 nike

我可以定义一个 Angular Directive(指令),以便它匹配多个相似的术语吗?即

angular.module('search').directive('platformPreload', function() {
return {
link: function(scope, element, attrs) {
}
}
}

将匹配以下两个:

<div platform-preload-terms="[]"></div>
<div platform-preload-suggestions="[]"></div>

最佳答案

没有通配符指令声明。

但是你可以隔离函数并重复定义:

angular.module('search')
.directive('platformPreload', PlatFunction)
.directive('platformPreloadSuggestions', PlatFunction)


PlatFunction() {
return {
link: function(scope, element, attrs) { }
}
}

关于javascript - 用于匹配多个属性的 Angular 指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39723363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com