【问题标题】:How to apply multi ngif to data display on table?如何将多 ngif 应用于表格上的数据显示?
【发布时间】:2020-09-06 23:15:31
【问题描述】:

如何对返回表的数据应用multi *ngIf?

我需要根据多条件 *ngIf 来控制列名,但我不知道使用了哪个标签以及在哪里:

*ngIf="coln=repcon.fieldName && repcon.columnType=1" then display data as icon link on field onlineurl
*ngIf="coln=repcon.fieldName && repcon.columnType=2" then make it as hidden field to field onlineurl

我在 Angular 7 应用程序上工作,我显示的动态数据没有固定的标题或内容

 <thead >
                  <tr>
                    <th  *ngFor="let coln of headerCols">


                        {{coln}}

                    </th>


                  </tr>
                </thead>
 <tbody>
                  <ng-container *ngFor="let repcon of ReportControl">
                  <ng-container *ngFor="let repdata of ReportData">
                    <tr *ngFor="let rep of reportdetailslist">

                      <td *ngFor="let coln of headerCols">

                        <span>{{rep[coln]}}</span>
                   // i think here can applied multi ng if but which tag used .
                        </td>

                    </tr>
                  </ng-container>
                </ng-container>

                </tbody>
sample data

ReportId   onlineurl          reportdate
1222       localhost:5000/    12-12-2018
1222       localhost:7000/    12-01-2019
1222       localhost:9000/    12-12-2020
control report
reportid  fieldname   columntype
1222       onlineurl     1

【问题讨论】:

  • 你可以有多个div标签有*ngIf。

标签: javascript typescript angularjs-directive angular7 angular-components


【解决方案1】:

根据你的条件,你可以嵌套 *ngIf :

<td *ngFor="let coln of headerCols">
    <div *ngIf="coln=repcon.fieldName">

        <div *ngIf="repcon.columnType=1">data as icon link</div>

        <div *ngIf="repcon.columnType=2">hidden field</div>
    </div>
</td>

或者使用 *ngSwitch :

<td *ngFor="let coln of headerCols">
    <div *ngIf="coln=repcon.fieldName" [ngSwitch]="repcon.fieldName">

        <div *ngSwitchCase="1">data as icon link</div>

        <div *ngSwitchCase="2">hidden field</div>

    </div>
</td>

【讨论】:

  • 好的,谢谢回复如何将数据显示为图标链接
  • 我不知道,你的问题是“如何应用多 ngif?”,所以我回答了。 “将数据显示为图标链接”是什么意思?什么是“图标链接”?
  • 图标链接表示将文本 URL 显示为带有镜头名称 url 链接的链接
  • 什么,你的意思是像&lt;a href="https://full.url.here"&gt;Click here&lt;/a&gt;这样的简单链接?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2019-04-28
  • 1970-01-01
  • 2013-07-08
  • 2020-11-06
  • 1970-01-01
  • 2015-10-08
  • 1970-01-01
相关资源
最近更新 更多