我有一个用户帖子的列表视图。我想实现一个类似的功能。我想将post id传递给函数,所以我可以将类似的东西添加到数据库中。
按Stacklayout应该触发类似的功能。
home.component.html(崩溃)
<ListView [items]="posts">
<ng-template let-post="item">
<StackLayout (tap)="likePost( {{ post.id }} )>
...
</StackLayout>
</ng-template>
</ListView>
<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
}