- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下二维数组:
SideNavItems= [["Parent Section 1", "Parent Section 2"],["Parent Section 3", "Parent Section 4"]]
我想使用 ng-repeat 在具有选项卡式导航的页面上按以下方式显示它们:
期望的输出:
选择第一个选项卡时:
Parent Section 1
Parent Section 2
选择第二个选项卡时:
Parent Section 3
Parent Section 4
当前输出:
选择第一个选项卡时:
Parent Section 1
Parent Section 2
Parent Section 3
Parent Section 4
我有一个 $index 变量,该变量根据选择的选项卡而变化。我可以设置它,以便当索引为0时仅重复第一个数组(二维数组的元素0)的内容,当索引为1时重复第二个数组(二维数组的元素1)的内容,依此类推,如果二维数组有更多元素?
这是我用于重复数组的 html:
<div id="field">
<div ng-repeat="row in SideNavItems">
<div ng-repeat="cell in row" >
<a ng-click="level=2">{{cell}}</a>
</div>
</div>
</div>
我不知道这是否非常相关,但这是选项卡的 HTML。 getClass 方法提供可更改 CSS 中选项卡外观的事件类。 toggleSelect 方法将当前索引更改为事件选项卡。
<nav>
<ul>
<li ng-class="getClass($index)" ng-repeat="tab in tabs">
<a ng-click="toggleSelect($index)" ng-class="getLinkClass($index)">{{tab}}</a>
</li>
</ul>
</nav>
我有类似的数组,其中每个父部分的子部分都相同,如果有办法完成这项工作,我希望做同样的事情。我想我需要另一个变量来充当第二个索引......
***编辑2015年2月3日下午2:00
根据您的建议,我能够得到我想要的输出。我现在正在尝试为这些父部分的子部分获得类似的功能,但它似乎有点复杂。我实际上有一个 3D 数组:
[
[[Parent1Child1, Parent1Child2],[Parent2Child1, Parent2Child2, Parent2Child3]],
[[Parent3Child1, Parent3Child2],[Parent4Child1, Parent4Child2, Parent4Child3]]
]
期望的输出:当选择第一个选项卡时:
Parent Section 1
Parent1Child1
Parent1Child2
Parent Section 2
Parent2Child1
Parent2Child2
Parent2Child3
选择第二个选项卡时:
Parent Section 3
Parent3Child1
Parent3Child2
Parent Section 4
Parent4Child1
Parent4Child2
Parent4Child3
每个部分最终都将是一个可折叠/可展开的 Accordion ,这就是我开始编码的目标,但也许我需要备份并处理它,吐出上面显示的所需输入,然后我可以使用 ng-click 显示/隐藏展开/折叠功能的正确内容。他就是我迄今为止所拥有的,而且似乎很接近。我描述了代码后的输出。
切换选择代码:
//gets tab tiles order from csv
$scope.tabs= tabsService.mainTabs;
//Assigns active classes to main tabbed navigation
$scope.selectedIndex = 0;
$scope.sideNavItems = productCategoryService.sideNavItems;
$scope.sideNavChildren = productCategoryService.sideNavChildren;
$scope.toggleSelect = function(ind){
$scope.selectedIndex = ind;
$scope.currentTabSideNavItems = $scope.sideNavItems[ind];
$scope.selectedChildIndex = 0;
$scope.toggleChildIndex = function(childIndex){
$scope.selectedChildIndex = childIndex;
$scope.currentSideNavChildren = $scope.sideNavChildren[ind][childIndex];
}
}
HTML
<div id="field">
<div ng-repeat="item in currentTabSideNavItems">
<a ng-click="toggleChildIndex($index)">{{item}}</a>
<div ng-repeat="child in currentSideNavChildren">
<a ng-click="toggleChildIndex($index)">{{child}}</a>
</div>
</div>
</div>
使用此代码,当我单击相应的父部分标题时,我会显示正确的子部分,但子部分显示在当前页面上的所有父部分下。例如:
当选择第一个选项卡并单击父部分 1 时:
Parent Section 1
Parent1Child1
Parent1Child2
Parent Section 2
Parent1Child1
Parent1Child2
当选择第一个选项卡并单击父部分 2 时:
Parent Section 1
Parent2Child1
Parent2Child2
Parent2Child3
Parent Section 2
Parent2Child1
Parent2Child2
Parent2Child3
我是不是又把事情复杂化了?我该如何努力让合适的 child 与他们的 parent 在一起?非常感谢您抽出宝贵的时间,非常感谢。
最佳答案
在我看来,您确实希望将其保留在 UI 之外并将其隐藏在 Controller 中。从外观上看,您的 Controller 中已经有一个名为“toggleSelect”的操作,在其中您可以将新的范围属性设置为仅当前选定选项卡的侧面导航项,例如;
$scope.toggleSelect = function(index) {
// existing code here
$scope.currentTabSideNavItems = SideNavItems[index];
}
您的标记可以简化为:
<div id="field">
<div ng-repeat="item in currentTabSideNavItems">
<a ng-click="level=2">{{item}}</a>
</div>
</div>
这样,提取要显示的项目的逻辑就可以很好地隐藏在 Controller 中,并且可以进行测试。
关于javascript - AngularJS ng-重复二维数组并根据索引仅显示某些值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28302995/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!