Guest User

Untitled

a guest
Oct 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <h3>AsyncPipe with NgIf</h3>
  2.  
  3. <div *ngIf="promiseBook | async as book; else loading">
  4. Id: {{book.id}}, Name: {{book.name}}
  5. </div>
  6. <ng-template #loading>Loading Data...</ng-template>
  7.  
  8. <h3>AsyncPipe with NgSwitch</h3>
  9.  
  10. <div [ngSwitch]="(promiseBook | async)?.id">
  11. <div *ngSwitchCase="100">Find Actual Data</div>
  12. <div *ngSwitchDefault>Showing Default Data</div>
  13. </div>
Add Comment
Please, Sign In to add comment