ng-switch in Angular2



我正在使用angular 2(目前是alpha 26版本)。例如,ng-forng-if工作正常。然而,我确实有ng-switch问题。我只是不能让它工作,即没有打印。好像整个模板都被忽略了。

这是我的组件的代码,也可以在github上找到:

import {Item} from "js/types/item";
import {Component, View, NgFor, NgIf, NgSwitch} from "angular2/angular2";
@Component({
    selector: "item-details",
    properties: [
        "item"
    ]
})
@View({
    template: `<span>You selected {{item.name}},</span>
               <span [ng-switch]="item.name">
                 <template [ng-switch-when]="'Bill'">
                   <span> who is often called Billy.</span>
                 </template>
                 <template [ng-switch-when]="'Bob'">
                   <span> who is often called Bobby.</span>
                 </template>
                 <template [ng-switch-default]">
                   <span>who has no nickname.</span>
                 </template>
               </span>
               <div *ng-if="item.subItems">
                 <h2>Sub items:</h2>
                 <ul>
                   <li *ng-for="#subItem of item.subItems">{{subItem.name}}</li>
                 </ul>
               </div>`,
    directives: [NgFor, NgIf, NgSwitch]
})
export class ItemDetailsComponent {
    item:Item;
}

基本上它是一个简单的组件,我注入一个项目,其中有一个name属性。name属性确实有一个值,我可以看到<span>You selected {{item.name}},</span>行工作得很好。

我不知道为什么它不起作用。在我看来,一切都应该是正确的。我比较了github上的angular repo、单元测试等。

这些是我检查过的东西,我相信是可以的:

  • NgSwitch通过directives导入注入
  • 语法正确
  • item真的是可用的(但也许不是在NgSwitch的上下文中?)

只是为了确保,我还尝试了一些琐碎的东西,如以下模板(切换硬编码的字符串或数字):

<span [ng-switch]="'foo'">
 <template [ng-switch-when]="'foo'">
   <span> who is often called foo.</span>
 </template>
 <template [ng-switch-when]="'bar'">
   <span> who is often called bar.</span>
 </template>
</span>

这个也不起作用,所以它一定是一些非常基本的东西,我做错了…恐怕我在网上找不到任何例子或代码片段。

您需要导入NgSwitchWhenNgSwitchDefault,将它们添加到导入语句

相关内容

  • 没有找到相关文章

最新更新