1

我有循环 ngFor,我需要用索引声明参考 id '#'。例如

<button (click)="addRow()"></button>
<tr *ngFor="let data of datas; let i= index">
<td><ng-select #data{{i}} ></ng-select></td>
</tr>

addRow(){
// after selected data next row to focus.
}

我想专注于下一行 ng-select。

4

2 回答 2

2

更新Viewchildren 输入或 ng-select

通过输入,您可以使用 ViewChildren

<div *ngFor="let item of items">
      <input #data/>
</div>

@ViewChildren('data') data: QueryList<ElementRef>;
ngAfterViewInit()
{
    this.data.changes.subscribe(()=>{
       this.data.last.nativeElement.focus();
    })
}

如果我们有您需要的 ng-select

<div *ngFor="let item of items">
   <ng-select #data .....>
   </ng-select> 
</div>

<!--see that the "QueryList" is a NgSelectComponent-->
@ViewChildren('data') data: QueryList<NgSelectComponent>;
ngAfterViewInit()
    {
        this.data.changes.subscribe(()=>{
          <!--we use filterInput.nativeElement-->
          this.data.last.filterInput.nativeElement.focus();
        })
    }

一个完整的堆栈闪电战(在堆栈闪电战中,我添加了一个“takeWhile”来取消订阅 ngOnDestroy 元素中的更改)

于 2019-02-19T08:17:26.027 回答
0

尝试使用以下代码

<tr *ngFor="let dataObject of data; let i = index; trackBy:i;">
  <td><ng-select #data{{i}} ></ng-select></td>
</tr>

用于对焦

import { Component, ElementRef, ViewChild, AfterViewInit} from '@angular/core';
... 

@ViewChild('data1') inputEl:ElementRef;

addRow() {
  setTimeout(() => this.inputEl.nativeElement.focus());
}

或者

import Renderer2 from @angular/core into your component. Then:

const element = this.renderer.selectRootElement('#data1');

setTimeout(() => element.focus(), 0);

参考https://coderanch.com/t/675897/languages/programmatically-manage-focus-Angular-app

于 2019-02-19T07:27:30.970 回答