最佳答案
我的 AngularJS 模板包含一些自定义的 HTML 语法,比如:
<su-label tooltip="{{field.su_documentation}}">{{field.su_name}}</su-label>
我制定了一个指令来处理它:
.directive('suLabel', function() {
return {
restrict: 'E',
replace: true,
transclude: true,
scope: {
title: '@tooltip'
},
template: '<label><a href="#" rel="tooltip" title="{{title}}" data-placement="right" ng-transclude></a></label>',
link: function(scope, element, attrs) {
if (attrs.tooltip) {
element.addClass('tooltip-title');
}
},
}
})
除了 attrs.tooltip
表达式总是返回 undefined
之外,所有操作都很正常,尽管在执行 console.log(attrs)
时,从 Google Chrome 的 JavaScript 控制台可以看到 tooltip
属性。
有什么建议吗?
更新: Artem 提供了一个解决方案,包括这样做:
link: function(scope, element, attrs) {
attrs.$observe('tooltip', function(value) {
if (value) {
element.addClass('tooltip-title');
}
});
}
AngularJS + stackoverflow = 极乐