没有 ngModel 和文本字段闪烁的 OnBlur 事件

OnBlur event without the ngModel & textfield blinking

Nativescript 应用程序:我正在创建 dinamy TextFields。

1) 问题 - 当我点击动态生成的文本字段时,键盘显示几毫秒后消失。当我快速点击几次时,键盘会停止。

2) 如何在动态生成的 TextField 上创建 onChange/onBlur 事件?就像当我更新 textField 时我需要调用一个方法。

这是当前列表: (模糊)不起作用: <StackLayout col="1" row="0"> <ListView [items]="categoryService.attributes | async"> <template let-item="item" let-i="index"> <GridLayout rows="50 100"> <Label [text]="item.name"></Label> <TextField #input *ngIf="item.type=='text'" row="1" hint="Enter Value here" [text]="item.name" (blur)="categoryService.onAttributeChange(item, item.type, null, input.value)"></ TextField> <Switch #switch *ngIf="item.type=='checkbox'" row="1" checked="false" (checkedChange)="categoryService.onAttributeChange(item, item.type, null, switch.checked)"></Switch> <DropDown #aa *ngIf="item.type=='select'" row="1" [items]="categoryService.showAttributeValues(item.value)" [selectedIndex]="selectedIndex" (selectedIndexChange)="categoryService.onAttributeChange(item, item.type, aa.selectedIndex)"></DropDown> </GridLayout> </template> </ListView> </StackLayout>

谢谢!

关于你的第二个问题,你可以使用 textChange 方法并以 return $event 作为参数,这将帮助你单独获取每个 TextField 的文本。您可以查看下面的示例代码。关于显示键盘的问题,可能与 listview itemTap 事件有关。但是,此问题仅在 Android 上重现,并且仍在寻找可能的解决方案。

app.component.html

<StackLayout>
    <ListView [items]="myItems" (itemTap)="onItemTap($event)">
        <template let-item="item" let-i="index" let-odd="odd" let-even="even">
            <StackLayout [class.odd]="odd" [class.even]="even">
                <Label [text]='"index: " + i'></Label>
                <Label [text]='"[" + item.id +"] " + item.name'></Label>
                <TextField (tap)="onTap($event)" hint="Enter text" text="" (textChange)="ontextChange($event)"></TextField>

            </StackLayout>
        </template>
    </ListView>
</StackLayout>

app.component.ts

import {Component, Input, ChangeDetectionStrategy} from '@angular/core';
import {TextField} from "ui/text-field";
import app = require("application");

class DataItem {
    constructor(public id: number, public name: string) { }
}

@Component({
    selector: "my-app",
    templateUrl: "app.component.html",
})
export class AppComponent {
   public myItems: Array<DataItem>;
    private counter: number;
    public status =true;

    constructor() {
        this.myItems = [];
        this.counter = 0;
        for (var i = 0; i < 50; i++) {
            this.myItems.push(new DataItem(i, "data item " + i));
            this.counter = i;
        }
    }

    public onItemTap(args) {
        console.log("------------------------ ItemTapped: " + args.index);
    }

    public ontextChange(args){
        console.log("text "+args.object.text);
    }
}

希望对您有所帮助