Atualizar
Podemos apenas criar uma diretiva como *ngIf
e chamá-la*ngVar
ng-var.directive.ts
@Directive({
selector: '[ngVar]',
})
export class VarDirective {
@Input()
set ngVar(context: any) {
this.context.$implicit = this.context.ngVar = context;
this.updateView();
}
context: any = {};
constructor(private vcRef: ViewContainerRef, private templateRef: TemplateRef<any>) {}
updateView() {
this.vcRef.clear();
this.vcRef.createEmbeddedView(this.templateRef, this.context);
}
}
com esta *ngVar
diretiva, podemos usar o seguinte
<div *ngVar="false as variable">
<span>{{variable | json}}</span>
</div>
ou
<div *ngVar="false; let variable">
<span>{{variable | json}}</span>
</div>
ou
<div *ngVar="45 as variable">
<span>{{variable | json}}</span>
</div>
ou
<div *ngVar="{ x: 4 } as variable">
<span>{{variable | json}}</span>
</div>
Exemplo de Plunker Angular4 ngVar
Veja também
Resposta original
Angular v4
1) div
+ ngIf
+let
<div *ngIf="{ a: 1, b: 2 }; let variable">
<span>{{variable.a}}</span>
<span>{{variable.b}}</span>
</div>
2) div
+ ngIf
+as
Visão
<div *ngIf="{ a: 1, b: 2, c: 3 + x } as variable">
<span>{{variable.a}}</span>
<span>{{variable.b}}</span>
<span>{{variable.c}}</span>
</div>
component.ts
export class AppComponent {
x = 5;
}
3) Se você não deseja criar um invólucro como div
você pode usarng-container
Visão
<ng-container *ngIf="{ a: 1, b: 2, c: 3 + x } as variable">
<span>{{variable.a}}</span>
<span>{{variable.b}}</span>
<span>{{variable.c}}</span>
</ng-container>
Como @Keith mencionado nos comentários
isso funcionará na maioria dos casos, mas não é uma solução geral, pois depende da variável ser verdadeira
Consulte a atualização para outra abordagem.