1

JobComponentという名前のプロパティで名前candidate_typesを付けたコンポーネントを作成し、コンポーネントへの属性バインディングを使用してプロパティをバインドしようとしている Angular 2 アプリにNgbdTypeaheadBasic取り組んでいますが、機能していません。理由はわかりません。以下のファイルです。

job.module.ts

import { NgbdTypeaheadBasic } from './typehead.component';
import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule }   from '@angular/forms';
import { JobComponent }   from './job.component';
@NgModule({
  imports:      [ BrowserModule, FormsModule ],
  declarations: [ JobComponent, NgbdTypeaheadBasic],
  bootstrap:    [ JobComponent ]
})


export class JobModule { }

job.component.ts

import { Component } from '@angular/core';
import {Http, Response} from '@angular/http';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/toPromise';

@Component({
    selector : 'job_block',
    template : "<ngbd-typeahead-basic [options]='candidate_types'></ngbd-typeahead-basic>",
})

export class JobComponent {
    candidate_types:any=['air', 'ocean'];
}

typehead.component.ts

import {Component,Input} from '@angular/core';
import {Observable} from 'rxjs/Observable';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged';

@Component({
  selector: 'ngbd-typeahead-basic',
  templateUrl: './partials/third-party/typehead.html'
})
export class NgbdTypeaheadBasic {
  public model: any;

  states:any;

  @Input() options:any;

  constructor() { console.log(this.options); }

  search = (text$: Observable<string>) =>
    text$
      .debounceTime(200)
      .distinctUntilChanged()
      .map(term => term.length < 2 ? []
        : this.states.filter(v => new RegExp(term, 'gi').test(v)).splice(0, 10));
}

typehead.html

<input type="text" class="form-control" [(ngModel)]="model" [ngbTypeahead]="search" />

アプリを起動すると、すべてのコンポーネントがエラーなしで適切にレンダリングされますがundefinedconsole.log(this.options);

Angular 2 Bootstrap Typehead コンポーネントを実装しようとしています:

https://ng-bootstrap.github.io/#/components/typeahead

私が取った参照:

https://angular.io/docs/ts/latest/tutorial/toh-pt3.html

4

1 に答える 1

2

undefined印刷しようとしていて、それがoptionsconstructorあると考えているため、取得していますが@Input()、その時点ではまだ親コンポーネントから渡されていません。そこに実装OnInitして印刷すると、動作することがわかります。

import { OnInit } from '@angular/core';

export class NgbdTypeaheadBasic implements OnInit {

ngOnInit() {
console.log(this.options);
}

}

Angular 2 Lifecycle Hooksを確認してください。

于 2016-11-09T22:48:54.047 に答える