Angular 2 - * ngSwitch不工作

时间:2016-10-21 12:43:46

标签: angular

当我将*ngSwitchCase设置为item.category时,如下所示,它将起作用并显示图像。

{{item.category}}会在屏幕上的文字中显示左手项目。

但是,如果我使用:

<div *ngSwitchCase="'left-hand-item'">

然后它不起作用,我什么都看不见。

<div *ngFor="let item of itemsToShow">
        <div [ngSwitch]="item.category">
            <div *ngSwitchCase="item.category">
                {{item.category}}
                <img id="left-hand-item" class="layer img-responsive" name="left-hand-item" src={{item.fullItemURL}} />
            </div>
        </div>
    </div>

0 个答案:

没有答案