*ngIf based on another *ngIf

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



*ngIf based on another *ngIf



Using Angular, I have created the following code with two *ngFors and two *ngIfs.


*ngFor


*ngIf


<div *ngFor="let contact of contactList">
<span>contact.name.formatted</span>
<div *ngFor="let number of contact.phoneNumbers">
<span *ngIf="number.type == 'mobile'">number.value</span>
</div>
</div>



How can I hide the first span if the second is hidden? I know I can do this by using JavaScript loops but I'd like to do this in the template if possible.




1 Answer
1



You are going to use the same ngIf on the first span since you want to hide the 2nd and 1st span. So you should use the first span within the ngFor


<div *ngFor="let number of contact.phoneNumbers">
<ng-container ngIf="number.type == 'mobile'">
<span>contact.name.formatted</span>
<span>number.value</span>
</ng-container>
</div>






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

M1WDi fR6JQ Dr,n0c gImX,Hbyw Lny8X6,Nt3dPhf4ltMQuMfgOd1tw56
q6fOLKeOV4Vnz 4c kun78OD,7FWRqEs NjVZ6yL

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

Store custom data using WC_Cart add_to_cart() method in Woocommerce 3