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()中传递的参数作为我的代码中的字符串而不是对象。 我该如何解决这个问题?
答案 0 :(得分:0)
你正在连接2个值,所以我希望它确实成为一个字符串。你能试试这个setValue(item)
吗?