我在网上找到了一个不错的悬停菜单实现。它非常适合分配href。我想将其转换为与 ui.router 状态和 sref 一起使用。
我在菜单数据对象上添加了 href 和 sref 值。
在它生成和编译 html 的地方,我将 {{node.href}} 更改为“{{ $state.href(node.sref)}}”
但是生成的输出“{{ $state.href(node.sref)}}”就像我写的一样出现,它没有评估。
这是因为在那种情况下 $state 没有定义吗?如果是这样我如何定义它?
如果不是,你能告诉我为什么它不评估吗?
我的最终目标是这样的: {{node.href ? node.href : $state.href(node.sref)}}
如果 node.href 是真实的,它可以工作,但如果 href 未编译,则表达式显示为未定义...所以我知道它正在尝试评估该表达式...我将它转换为 "$state.href(node. sref)" 来简化它...
还有一种方法可以查看 $compile 期间生成的错误吗?
非常感谢任何帮助,我对 Angular 还很陌生,而且我的知识有很多空白,所以请随时提出愚蠢的问题来验证我对问题的基本理解,并用简短的语言进行解释:) 我可能需要那个。
var app = angular.module('defaultApp');
app.controller('menuController', ['$scope', '$location', function ($scope, $location) {
$scope.breadcrumbs = [];
$scope.menu = [
{
text: 'HOME',
href: '\default.html',
children: [
{ text: 'Default', href: '\default.html' }
]
},
{
text: 'start',
//href: '\default.html',
sref: 'start',
children: [
{
text: 'search',
//href: '/manage-people',
sref: 'search',
children: [
{ text: 'search', sref: 'search' },
{ text: 'start', sref: 'start' }
]
}
]
},
{ text: 'MY INFO', href: '/my-info', sref: 'search' }
];
/* Directives */
app.directive('navMenu', ['$parse', '$compile', function ($parse, $compile) {
return {
restrict: 'C',
scope: true,
link: function (scope, element, attrs) {
scope.selectedNode = null;
scope.$watch(attrs.menuData, function (val) {
var template = angular.element('<ul id="parentTreeNavigation"><li ng-repeat="node in ' + attrs.menuData + '" ng-class="{active:node.active && node.active==true, \'has-dropdown\': !!node.children && node.children.length}"><a ng-href="{{$state.href(node.sref)}}" target="{{node.target}}" >{{node.text}}</a>{{node.click}}<sub-navigation-tree></sub-navigation-tree></li></ul>');
var linkFunction = $compile(template);
linkFunction(scope);
element.html(null).append(template);
}, true);
}
};
}])
.directive('subNavigationTree', ['$compile', function ($compile) {
return {
restrict: 'E',
scope: true,
link: function (scope, element, attrs) {
scope.tree = scope.node;
if (scope.tree.children && scope.tree.children.length) {
var template = angular.element('<ul class="dropdown "><li ng-repeat="node in tree.children" node-id={{node.' + attrs.nodeId + '}} ng-class="{active:node.active && node.active==true, \'has-dropdown\': !!node.children && node.children.length}"><a "{{ $state.href(node.sref)}}" target="{{node.target}}" >{{node.text}}</a><sub-navigation-tree tree="node"></sub-navigation-tree></li></ul>');
var linkFunction = $compile(template);
linkFunction(scope);
element.replaceWith(template);
}
else {
element.remove();
}
}
};
}]);