在angular2中使用ngFor不显示迭代名称

时间:2016-11-06 06:43:45

标签: javascript angular

我是Angular2的新手。我想显示项目列表。在我的 first-angular-js-2-application.js 文件中,我已经完成了

import {Component, View} from 'angular2/core';

@Component({
  selector: 'first-angular-js-2-application'
})

@View({
  templateUrl: 'first-angular-js-2-application.html'
})

export class FirstAngularJs2Application {

  constructor() {
    console.info('FirstAngularJs2Application Component Mounted Successfully');

     public products = [
                     {name: "Butter"},
                     {name: "Milk"},
                     {name: "Yogurt"},
                     {name: "Cheese"},
                  ];
  }
}

并在 first-angular-js-2-application.html 我有

<h1><b><font color="blue">Product names</font></b></h1>
<ul>
              <li *ngFor="#p of products" >
                  {{ p.name }}
              </li>
           </ul>

现在,当我运行应用程序时,它没有显示产品名称。

我做错了什么?

N.B.~我通过Yoeman生成了Angular2应用程序

1 个答案:

答案 0 :(得分:2)

试试这个

<li *ngFor="let p of products" >
                  {{ p.name }}
              </li>

我创建了一个plnkr,但它是angular2的最终版本

Plunker Demo