* ngIf在Angular 7中有什么问题

时间:2019-06-09 10:34:07

标签: angular typescript angular7

*ngIf指令有什么问题

*ngIf="{{text}}=={{display.company}} ||{{text}}=={{display.field}}||{{text}}== 
{{display.sub_field}}"

2 个答案:

答案 0 :(得分:1)

您无需在此处用{{ }}内插值,如果它们是在组件上定义的,则以下内容就可以了。

*ngIf="text === display.company || text === display.field || text === display.sub_field"

如果任一条件导致结果为true,则此*ngIf将呈现到视图中。

here is the documentation from Angular

答案 1 :(得分:0)

您不需要将代码放在方括号(插值)

<div *ngIf="text==display.company ||text==display.field||text== 
display.sub_field"> </div>