Angular 2中是否存在ngRepeat?
发布时间:2020-12-17 08:02:26 所属栏目:安全 来源:网络整理
导读:我已经阅读了与Angular 2相关的各种问题跟踪器条目及其ng-repeat的实现,但是就目前而言,如果它实际存在,我实际上并未解决。 是否可以在角度2中使用ng-repeat? Angular 2.0发布 我-component.ts: import { Component } from 'angular2/core';@Component(
我已经阅读了与Angular 2相关的各种问题跟踪器条目及其ng-repeat的实现,但是就目前而言,如果它实际存在,我实际上并未解决。
是否可以在角度2中使用ng-repeat?
Angular 2.0发布
我-component.ts: import { Component } from 'angular2/core'; @Component({ selector: 'my-component',templateUrl: './my-component.html' }) export class MyComponent{ public values: number[] = [1,2,3]; } 我-component.html: <div *ngFor='let value of values; trackBy: index;'> {{ value }} </div> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |