角度2を使用する場合、次の2つのオプションを使用してスタイルに変数値を渡す方法の違いは何ですか?長所と短所がありますか、それとも個人的な選択ですか、他の用途のための柔軟性があります。[ngStyle]と[style.attribute]を使用する場合の角度2の違い
オプション1
<div [ngStyle]="{ 'background-image': 'url(' + image + ')'}">
オプション2
<div [style.background-image]="'url(' + image + ')'">
関連:
Attribute property binding for background-image url in Angular 2
How to add background-image using ngStyle (angular2)?