Nativescript Angular 2 - 如何在tap函数(xml)中传递变量?

问题描述 投票:0回答:1

我有一个用户帖子的列表视图。我想实现一个类似的功能。我想将post id传递给函数,所以我可以将类似的东西添加到数据库中。

按Stacklayout应该触发类似的功能。

home.component.html(崩溃)

<ListView [items]="posts">
    <ng-template let-post="item">
        <StackLayout (tap)="likePost( {{ post.id }} )>
            ...
        </StackLayout>
    </ng-template>
</ListView>
angular2-nativescript
1个回答
1
投票
<ListView [items]="posts">
    <ng-template let-post="item">
        <StackLayout (tap)="likePost(post.id)>
            ...
        </StackLayout>
    </ng-template>
</ListView>

在你的home.component.ts

likePost(id) {
//Use Id here and register the line
}
© www.soinside.com 2019 - 2024. All rights reserved.