gpt4 book ai didi

带有 TreeView 的 AngularJS 下拉列表

转载 作者:行者123 更新时间:2023-12-01 02:09:21 27 4
gpt4 key购买 nike

我是 angularjs 的新手,我想使用带有 TreeView 结构的下拉列表。我分别使用了下拉列表和 TreeView 控件,但发现一起使用有困难。任何人都可以知道如何一起使用两者(下拉列表+ TreeView )

最佳答案

您可以使用简单的选择控件。我希望您按某些属性对值进行分组。假设您有以下数据结构:

  $scope.data = [
{
id: 1,
value: "Cat",
type: "Animal"
},
{
id: 2,
value: "Dog",
type: "Animal"
},
{
id: 3,
value: "Lion",
type: "Animal"
},
{
id: 4,
value: "Parrot",
type: "Bird"
},
{
id: 5,
value: "Sparrow",
type: "Bird"
},
];

您可以按“类型”字段对数据进行分组,并显示如下 TreeView 下拉列表:
  <select ng-options="obj.value group by obj.type for obj in data track by $index"></select>

更多详情可以查看 https://docs.angularjs.org/api/ng/directive/ngOptions

关于带有 TreeView 的 AngularJS 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30409004/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com