<div class="treeItem" style="margin-top: -5px;"> <div class="itemhead"> <i class="fa fa fa-file-text-o"></i> <span>关键字</span> <div class="collspand fa fa-angle-right"></div> <div class="jstree"> <ul class="jstree-container-ul jstree-children"> <li class="jstree-node jstree-leaf" *ngFor="let tss of res.data.statistics.case_year_stats.buckets" > <i class="jstree-icon jstree-ocl"></i> <a class="jstree-anchor" href="#"></a> {{tss.key.slice(0,4)}}年({{tss.doc_count}})</li> </ul> </div> </div> </div>为什么treeitem的高度没有被撑开
时间: 2023-05-14 07:05:36 浏览: 125
vscode-npm-scripts:在侧栏中查看和运行NPM脚本
5星 · 资源好评率100%
这是一个HTML代码段,其中包含一个树形结构的列表,用于显示关键字和相关统计数据。该列表使用了jstree插件来实现树形结构的展示。其中,*ngFor指令用于循环遍历数据,并将每个数据项渲染为一个列表项。
阅读全文