ng-style で 2 つのスタイルを組み合わせたいのですが、そのうちの 1 つは条件付きスタイルです。
ng-style="{'height':height + '%'}"
ng-style="hasScroll !== 0 && {'width': (tableWidth) + 'px'}"
条件が false の場合、幅をオーバーライドせずに両方を組み合わせるにはどうすればよいですか?
以下は、条件が falsefalse の場合に「幅」プロパティをオーバーライドするため、適切ではありません。
ng-style="{ 'height': height + '%', 'width': hasScroll !== 0 ? (tableWidth) + 'px' : undefined }"