我的指令工作正常,显示所有趋势标签。该指令在 $scope 对象中查找 TrendingTag 属性。所以我有范围:真
app.directive('ngTrending', function () {
return {
restrict: 'E'
, transclude: true
, replace: true
, scope: true
, templateUrl: '/resources/ngViews/trending.html'
};
});
现在我希望能够基于指令上的属性基于选项(如只读=“真”)来配置它。并且能够根据诸如此类的属性有条件地更改模板的次要方面
<ng-trending></ng-trending>
生成启用操作的趋势标签。尽管
<ng-trending read-only="true"></ng-trending>
生成标签,但禁用了点击。如何对指令的范围进行编码,以便我仍然继承托管指令的控制器的范围,例如
<div ng-controller="fancy">
<ng-trending></ng-trending>
</div>
就像现在的情况一样(在指令模板内部,我引用了 fancyContrllers $scope.trendingTags 属性)。但是在指令的模板中,我想引用 $scope 中的“只读”。
我突然意识到我完全错误地处理了这个问题,并且我可能也想传递趋势标签......我很困惑 - 请帮助理顺我!
谢谢。