Angular 2 - 访问/获取 *ngFor 和 ngModel 内的输入元素

2024-01-19

<ion-card *ngFor='#product of products | mapToIterable:"key":true'>
    <ion-list>
        <ion-item>
            <ion-label stacked>Account No. / Phone No.</ion-label>
            <ion-input type="text" [(ngModel)]="product.msisdn"></ion-input>
        </ion-item>
        <ion-item>
            <ion-label stacked>Amount</ion-label>
            <ion-input type="text" (keypress)="isNumberKey($event)" [(ngModel)]="product.amount"></ion-input>
        </ion-item>
    </ion-list>
</ion-card>

参考上面的html,我如何获取ion-input的参考,以便我可以setFocus()验证失败后就可以了。我已经给出了下面的代码来验证每个输入。

for (var product of <any>this.products) {
    if (product.service_type_id == 2 && !product.msisdn) {
        alert('something');
        //Get the element and set focus here.
    }
}

这是一个好方法吗? Angular 2 中有更好的方法来处理这个问题吗?


一种获取使用以下命令创建的元素的引用的方法*ngFor is @ViewChildren()

如果元素实际上是组件或指令,则可以将组件/指令类型作为参数传递,否则可以添加模板变量,并且可以使用模板变量的名称(作为字符串)来查询元素。

在这种情况下,模板变量和组件类型都返回组件实例,但要调用焦点,我们需要ElementRef.nativeElement因此我创建了一个应用于的辅助指令ion-input用于查询元素并调用focus():

import {Component, Directive, Renderer, HostListener, ViewChildren, ElementRef} from 'angular2/core'

/// Helper directive
@Directive({
  selector: 'ion-input'
})
class Focusable {
  constructor(public renderer: Renderer, public elementRef: ElementRef) {}

  focus() {
    console.debug(this.elementRef.nativeElement);
    this.renderer.invokeElementMethod(
        this.elementRef.nativeElement, 'focus', []);
  }
}

/// Test component instead of the original ion-input
@Component({
    selector: 'ion-input',
    host: {'tabindex': '1'},
    template: `
    <div>input (focused: {{focused}})</div>
    `,
})
export class IonInput {
  focused:boolean = false;

  @HostListener('focus') 
  focus() {
    this.focused = true;
  }
  @HostListener('blur') 
  blur() {
    this.focused = false;
  }
}

/// Queries the elements and calls focus
@Component({
    selector: 'my-app',
    directives: [IonInput, Focusable],
    template: `
    <h1>Hello</h1>
<div *ngFor="let product of products">
  <ion-input #input type="text"></ion-input>
</div>   
<button *ngFor="let product of products; let index=index" (click)="setFocus(index)">set focus</button>
    `,
})
export class AppComponent {
  constructor(private renderer:Renderer) {
    console.debug(this.renderer)
  }

  products = ['a', 'b', 'c']
  @ViewChildren(Focusable) inputs;

  ngAfterViewInit() {
    // `inputs` is now initialized
    // iterate the elements to find the desired one
  }

  setFocus(index) {
    // `inputs` is now initialized
    // iterate the elements to find the desired one
    //var input = ...
    //console.debug(this.inputs.toArray()[1]);
    this.inputs.toArray()[index].focus();
  }  
}

也可以看看Angular 2:关注新添加的输入元素 https://stackoverflow.com/questions/34522306/angular-2-focus-on-newly-added-input-element

笨蛋的例子 https://plnkr.co/edit/JUMdao?p=preview

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Angular 2 - 访问/获取 *ngFor 和 ngModel 内的输入元素 的相关文章

随机推荐