如何在Nativescript核心中复制NgFor指令?

时间:2019-04-03 10:34:14

标签: nativescript

我正在寻找一种在Nativescript Core中使用某种模板的方法。

我发现Nativescript Angular获得了NgFor指令,该指令允许呈现模板。

Nativescript Core中有没有办法做类似的事情?

<StackLayout *ngFor="let fruit of fruitList" class="list-group-item">
   <Label [text]="fruit"></Label>
</StackLayout>

https://docs.nativescript.org/angular/ui/ng-ui-widgets/ng-directives#ngfor-directive

1 个答案:

答案 0 :(得分:0)

我们在NativeScript Core上将其称为Repeater

<Repeater items="{{ items }}">
    <Repeater.itemsLayout>
        <StackLayout orientation="horizontal" />
    </Repeater.itemsLayout>
    <Repeater.itemTemplate>
        <Label text="{{ $value }}" margin="10" />
    </Repeater.itemTemplate>
</Repeater>