- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要创建一个不同于典型嵌套 <ul />
的水平二叉树结构我看到使用 ng-repeat
指示。
我如何使用 ng-include 并将嵌套对象传递给它或以某种方式获取我需要的嵌套对象?
代码如下:
<div id="tree-container" ng-controller="CommentController">
<ul class="root-tree" id="current-tree">
<li class="root node">
<div class="feed">
<div class="comment">{{data.comment}}</div>
</div>
</li>
<li class="root-children">
<ul class="tree" ng-include="'tree'"></ul>
</li>
</ul>
</div>
<script>
app.controller("CommentController", ["$scope", function ($scope) {
$scope.data = {
comments: "blah",
leftChildren: {
comments: ["blah", "blah", "blah"],
leftChildren: { comments: ["blah", "blah", "blah"] },
rightChildren: { comments: ["blah", "blah", "blah"] }
},
rightChildren: { comments: ["blah", "blah", "blah"] }
};
)]);
</script>
<script type="text/ng-template" id="tree">
<li class="node">
<div class="feed">
<div class="comment" ng-repeat="comment in data.leftChildren">{{comment.comment}}</div>
</div>
</li>
<li class="node">
<div class="feed">
<div class="comment" ng-repeat="comment in data.rightChildren">{{comment.comment}}</div>
</div>
</li>
<li class="left-children">
<ul class="tree" ng-include="'tree'"></ul>
</li>
<li class="right-children">
<ul class="tree" ng-include="'tree'"></ul>
</li>
</script>
你可以在#tree
中看到模板我有 2 ng-include
指令。我想要 $scope
对于每个嵌套的 ng-include
在 $scope.data
上使用层次结构中的下一级,这将是 leftChildren
和 rightChildren
.
换句话说我基本上想要相同的效果ng-repeat
在 $scope
中调用嵌套数组时有.
希望这一切都有意义:)
最佳答案
这让我在了解情况之前思考了一下。问题与 ng-include 和范围有关。如何将不同的范围“发送”到每个包括。我无法让它与 onload、ng-init、ng-model 等一起工作...所以我想到了 ng-repeat,它创建了一个新的子作用域,这正是我们在这里寻找的。
我创建了一个 Plunker演示在这里。我不得不修改你的数据构建方式,所以我希望你可以应用这些修改。诀窍是为左右 child 创建一个数组,并使用 ng-repeat 创建一个子范围。现在,您甚至可以拥有 2 个以上的分支机构。您还可以添加一个类型属性,以便您知道哪个是左或右等。
结果(link to image):
JS(重做数据)
$scope.data = {
text: "blah",
comments: [
{
text: ["blahL11", "blahL12", "blahL13"],
comments: [
{
text: ["blahL111", "blahL112", "blahL113"]
},
{
text: ["blahR111", "blahR112", "blahR113"]
}
]
},
{
text: ["blahR11", "blahR12", "blahR13"]
}
]
};
HTML(根)
<ul>
<li>{{data.text}}</li>
<li ng-repeat="item in data.comments" ng-include="'tree.html'"></li>
</ul>
模板( child )
<div>Child</div>
<ul>
<li ng-repeat="text in item.text">{{text}}</li>
<li ng-repeat="item in item.comments" ng-include="'tree.html'"></li>
</ul>
关于javascript - 具有嵌套层次结构的 AngularJS ng-include,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16203926/
我正在尝试将多个水平链接的 Button 和 TextView 垂直链接为 View 集,但仍保持平面 View 层次结构。这是我的初始布局和代码:
到目前为止,我已经在Google BigQuery上训练了几种模型,目前我需要查看模型的外观(即架构,损失函数等)。 有没有办法获取这些信息? 最佳答案 仔细阅读文档后,我可以说该功能尚不存在。我什至
本文实例讲述了PHP实现二叉树深度优先遍历(前序、中序、后序)和广度优先遍历(层次)。分享给大家供大家参考,具体如下: 前言: 深度优先遍历:对每一个可能的分支路径深入到不能再深入为止,而且每个
我是一名优秀的程序员,十分优秀!