如何在数据更改后刷新* ngIf

时间:2017-02-28 00:36:35

标签: angular angular2-template

我正在开发我的第一个angular2项目。我有这种情况。如果帐户不存在,我会显示帐户创建屏幕。创建帐户后,我将accountexists的标志设置为true,但我不知道如何强制重新评估此逻辑。

<div *ngIf="!accountexists">
     <accountcreation></accountcreation>
</div>
<div *ngIf="accountexists">
    <accountdatasheet></accountdatasheet>
</div>

0 个答案:

没有答案