gpt4 book ai didi

android - native 脚本 Angular2 : Get Listview label Index or Text on Tap

转载 作者:行者123 更新时间:2023-11-29 19:16:54 25 4
gpt4 key购买 nike

Angular2 Nativescript 安卓:我有一个 ListView ,其中填充了来自 1xN 字符串数组的标签。当用户点击 ListView 中的一个标签时,我想将一个变量设置为等于该标签的索引或标签的文本。

我应该如何修改我的 xml 和/或 selectPlan() 来执行此操作?

    <ListView [items]="submenu">
<template let-item="item">
<Label [text]="item" class="subUnselected" (tap)="selectPlan()"></Label>
</template>
</ListView>

这是有效的:

<ListView [items]="submenu">
<template let-item="item">
<Label [text]="item" class="subUnselected" (tap)="selectPlan(item)"></Label>
</template>
</ListView>


selectPlan(item) {
var plan = item;
}

最佳答案

您可以将其传递给 selectPlan(),因此它变为 selectPlan(item)

然后相应地调整组件中的函数。

关于android - native 脚本 Angular2 : Get Listview label Index or Text on Tap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43219426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com