我正在尝试在UI上显示树结构。但是得到一个错误。
无法绑定到“target”,因为它不是“i”的已知属性。(“v*ngFor=”让文件项
虽然这个属性存在于我的json文件中,如下所示:
[
{
"name": "great grandparent",
"reference": "great_grandparent",
"children": [
{
"name": "childless grandsibiling",
"reference": "childless_grandsibiling",
"children": []
},
{
"name": "grandparent",
"reference": "grandparent",
"children": [
{
"name": "childless sibiling",
"reference": "childless_sibling",
"children": []
},
{
"name": "another childless sibiling",
"reference": "another_childless_sibiling",
"children": []
},
{
"name": "parent",
"reference": "parent",
"children": [
{
"name": "child",
"reference": "child",
"children": []
},
{
"name": "another child",
"reference": "another_child",
"children": []
}
]
}
]
}
]
}
]
我的html文件如下:
<div class="row">
<div class="col-md-12">
<div id="google_translate_element"></div>
</div>
</div>
<div class="container sidenav-tree">
<ng-template #recursiveList let-files>
<div *ngFor="let item of files">
<div class="row node-item">
<i data-toggle="collapse" data-target="#{{item.reference}}"
class="fa fa-caret-right" *ngIf="!(item.children.length===0)"></i>
{{item.name}}
</div>
<div id="{{item.reference}}" class="container collapse" *ngIf="!(item.children.length===0)">
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container>
</div>
</div>
</ng-template>
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: files }"></ng-container>
</div>
我无法找出这次失败的原因。我已经尝试了所有可能的条件,我可以申请使它工作。请帮我解决这个问题
角预计<代码>
将您的html更改为:
<i data-toggle="collapse" attr.data-target="#{{item.reference}}"
这样,您可以绑定到属性,而不是属性或输入绑定
本文向大家介绍C#使用Jquery zTree实现树状结构显示 异步数据加载,包括了C#使用Jquery zTree实现树状结构显示 异步数据加载的使用技巧和注意事项,需要的朋友参考一下 C#使用Jquery zTree实现树状结构显示_异步数据加载 JQuery-Ztree下载地址:https://github.com/zTree/zTree_v3 JQuery-Ztree数结构演示页面: h
我跟随一些在线示例实现了一个导航抽屉操作栏半透明状态栏。半透明的状态栏根本不会变为透明。 这是我的AndroidManifest。xml v21/风格。xml 主要活动。xml 以及主要的活动。JAVA
我复活了一个CN1项目(已经发布),并尝试让它在Netbeans 11下的模拟器中运行(运行在OpenJdK 11上)。然而,该项目不断失败。 我更新了CN1谷歌地图扩展,刷新了libs,但问题仍然存在。 谷歌地图扩展版本是42。我该怎么做才能让一切都像以前一样运转? 任何帮助都很感激,
递归树组,父节点selected为true且partiallySelected为fasle的时候,所有子节点childrens下的节点的selected则也修改为true syncChildrenStatus(arr)后 希望得到的
问题内容: 我曾经使用过,但是它只能显示HTML,不能显示SVG,并且嵌套的SVG HTML无法完成显示。 然后,我使用,但是它只能显示SVG,不能显示HTML。 有什么办法解决这个问题? 问题答案: 配置为将画布用于SVG。为此,您需要一个专家。这里是的Appleteer。
我打算将一个由多个单一java项目组成的旧Ant项目迁移到一个多模块maven项目。的所有库都存储在一个本地文件夹中。为了建立依赖关系管理,我想向父pom添加所有依赖关系。xml(依赖项管理部分),并尽我所能将正确的内容添加到子项(Java Maven项目),直到编译工作开始。 然后,我想通过使用“mvn依赖:树-X”来简化pom.xmls,看看我是否向单个Maven项目添加了一些不需要显式添加到