AngularJS 2.0 – ng重复

前端之家收集整理的这篇文章主要介绍了AngularJS 2.0 – ng重复前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经阅读了关于angularjs 2.0的各种问题跟踪器条目,它是实现ng-repeat,但是由于它现在我实际上没有解决,如果它实际上存在!

那么,截至2015年5月28日,是否可以在anglejs 2.0中使用ng-repeat?

自AngularJS 2.0 Beta发行以来,正确的版本是:

我-component.js:

import {Component} from 'angular2/core';

@Component({
    selector: 'my-component',templateUrl: 'my-component.html'
})

export class MyComponent{
    values: number[] = [1,2,3];
}

我-组件的HTML:

<div *ngFor='let value of values'>
    {{ value }}
</div>
原文链接:https://www.f2er.com/angularjs/143164.html

猜你在找的Angularjs相关文章