0
私は、配列から文字列(質問)を表示している軽量カルーセルを持っています。私はバックグラウンド(そして潜在的にフォアグラウンド)の色を動的に変更したい。しかし、私のコードはエラーを引き起こしています...角度5マテリアル設定ダイナミック(ランダム)カラー
警告:安全でないスタイルの値の背景を青く塗る(http://g.co/ng/security#xss参照)。
<ngx-carousel style="width:450px" layout="column" layout-align="center center" [inputs]="carouselOne" (carouselLoad)="myfunc($event)" flex>
<ngx-item NgxCarouselItem *ngFor="let Question of Questions; let i = index">
<mat-card style="background:{{getColor()}}">
<h1>{{Question}}</h1>
</mat-card>
</ngx-item>
<div layout="row" flex>
<button NgxCarouselPrev class='leftRs'><</button>
<button NgxCarouselNext class='rightRs'>></button>
</div>
</ngx-carousel>
Angular 5 Materialオブジェクトに背景色を動的に設定するにはどうすればよいですか?