web-dev-qa-db-ja.com

Angular 2コンポーネントの読み込み時にフォームの最初のフィールドにフォーカスを設定します

私のアプリでは、コンポーネントの読み込み時にフォームの最初のフィールドに自動的にフォーカスを設定したいと思います。私は私のアプリのすべてのフォーム(リアクティブフォーム)でこれをしたいので、誰もが繰り返しなしにこれを達成する方法をガイドしてください。

11
Naveed Ahmed

この動作を実現するには、ディレクティブを使用する必要があります。

これはそれを行う方法を示します: https://plnkr.co/edit/ttxCP7vCLkLtNb3Xiaah?p=preview

import {Component, NgModule, Directive, ElementRef, Renderer} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'

@Directive({
  selector: 'form[anyNameHere]'
})
export class SelectFirstInputDirective {

  constructor(private _eRef: ElementRef, private _renderer : Renderer) { }

  private _getInputElement(nativeElement: any): any {
    if (!nativeElement || !nativeElement.children) return undefined;
    if (!nativeElement.children.length && nativeElement.localName === 'input' && !nativeElement.hidden) return nativeElement;

    let input;

    [].slice.call(nativeElement.children).every(c => {
      input = this._getInputElement(c);
      if (input) return false; // break
      return true; // continue!
    });

    return input;
  }

  ngAfterViewInit() {
    let formChildren = [].slice.call(this._eRef.nativeElement.children);

    formChildren.every(child => {
      let input = this._getInputElement(child);

      if (input) {
        this._renderer.invokeElementMethod(input, 'focus', []);
        return false; // break!
      }

      return true; // continue!
    });
  }
}

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2>Hello {{name}}</h2>
      <form anyNameHere>
        <div class="form-group">
            <input hidden formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">
            <label class="col-sm-3 control-label" for="firstName">Name</label>
            <div class="col-sm-9 form-inline">
              <div class="form-group">
                <div class="col-sm-12">
                  <input formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">
                </div>
              </div>

              <div class="form-group">
                <div class="col-sm-12">
                  <input formcontrolname="lastName" type="text" class="form-control input-sm ng-untouched ng-pristine ng-valid" placeholder="Last Name" id="lastName">
                </div>
              </div>
            </div>
        </div>
      </form>
    </div>
  `,
})
export class App {
  constructor() {
    this.name = 'Angular2'
  }
}

@NgModule({
  imports: [ BrowserModule ],
  declarations: [ App, SelectFirstInputDirective ],
  bootstrap: [ App ]
})
export class AppModule {}
5
mxii

これは、「autofocus」属性を入力要素に追加するだけで実現できます。

<input class="form-control" [formControl]="name" autofocus>
6
Rajiv

HTML autofocus属性 まさにそれを行う

<input type="text" name="fname" autofocus>

1
Yinon

Angular 4、Rendererは廃止されたため、ディレクティブの方法はなくなりました。しかし、とにかく常に「迅速かつダーティ」な方法を使用できます。フォーカスを設定する要素への参照を追加しますオンにして<reference-name>.focus()を使用します

<form [formGroup]="form" (ngSubmit)="onSubmit(form, $event); needFocus.focus()">
  <input placeholder="" formControlName="name" #needFocus>
</form>
1
Peng Wang

次の方法を使用できます=> 1. autoFoucsディレクティブでこれを行うことができますOR 2.次のようなコントロールへの参照を提供します

 <input hidden #firstName formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">

次に、tsファイルで次のように宣言します

export class App implements OnInit{
 @ViewChild('firstName') firstNameTextbox;
  constructor() {    
  }
ngOnInit() {
this.firstNameTextbox.nativeElement.focus();
}
}
0
sachin