Nativescript angular - 将元素变量作为事件中的参数传递

时间:2017-01-11 17:34:05

标签: angular2-nativescript

app.component.html

<ListView [items]="stocks">
<template let-item="item" let-i="index">
    <StackLayout>
        <Label #{{item.name+item.id}} [text]="item.name" (tap)="setValue(item.name+item.id)"</Label>
    </StackLayout>
</template>

在setValue()中传递的参数作为我的代码中的字符串而不是对象。 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

你正在连接2​​个值,所以我希望它确实成为一个字符串。你能试试这个setValue(item)吗?