教えてください。
画像を4つ外部URLより読み込み完了後にHTML出力させたいです。
非同期実行に起因しているのか読み込み完了することなくHTML出力されてしまいます。
どのようにすれば事前読み込み(preload)する事ができますか?
やりたい事はローディング表示を行い外部URLより画像をキャッシュさせてから画像を表示するようにしたいです。
■ サンプルURL
https://stackblitz.com/edit/angular-jt2clp
typescript
1import { Component } from '@angular/core'; 2 3@Component({ 4 selector: 'my-app', 5 templateUrl: './app.component.html', 6 styleUrls: [ './app.component.css' ] 7}) 8export class AppComponent { 9 isloading = true; 10 img = new Image(); 11 12 async ngOnInit() { 13 this.img.src="https://wallpaperaccess.com/full/11750.jpg"; 14 this.img.src="https://wallpaperaccess.com/full/11751.jpg"; 15 this.img.src="https://wallpaperaccess.com/full/11752.jpg"; 16 this.img.src="https://wallpaperaccess.com/full/11753.jpg"; 17 } 18 19 ngAfterViewInit() { 20 this.isloading = false 21 } 22 23}
HTML
1<div *ngIf="isloading; then loading; else elseBlock"></div> 2 3<!-- ローディング中 --> 4<ng-template #loading>ローディング中...</ng-template> 5 6<!-- コンポーネント表示 --> 7<ng-template #elseBlock> 8 <img src="https://wallpaperaccess.com/full/11750.jpg"/> 9 <img src="https://wallpaperaccess.com/full/11751.jpg"/> 10 <img src="https://wallpaperaccess.com/full/11752.jpg"/> 11 <img src="https://wallpaperaccess.com/full/11753.jpg"/> 12 表示OK! 13 </ng-template>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。