9

したがって、これは 2 in 1 の質問です。

まず、コンポーネント html 内の要素が読み込まれたときに関数を起動しようとしています。私はそれをさまざまな方法で試しました<div [onload]="myFunction()">. 私の推測では、これは進むべき道ではありませんが、適切に機能させるのに十分な知識がありません。また、要素をパラメーターとして送信したいと思います。たとえば、実行<div #myDiv (click)="myFunction(myDiv)">は機能しますが、明らかに、これは上記の要素のオンロードでは発生しません。ここでの適切な方法は何ですか、またはquerySelectorを実行する義務があります...

次は、コンポーネント内の ElementRef の注入に関する質問です。さて、ドキュメントによると、「nativeElement」プロパティを使用するのは適切ではありません。理由がよくわかりません。コンポーネント内の要素への参照を持つことは良いことですよね? それとも、関心事の分離を監督していますか? 私の最初の質問がオプションでない場合、この要素参照を使用して、OnInit クラスの ngOnInit 関数で目的のオンロード起動要素の querySelection を実行したいので、質問しています。

angular2 のドキュメントは完全ではないため、すべての情報を歓迎します。ありがとうございました。

export class HomeComponent implements OnInit
{
    public categories: Category[];
    public items: Item[];

    constructor
    (
        public element: ElementRef,
        private _categoryService: CategoryService,
        private _itemService: ItemService,
        private _router: Router
    ){}

    public registerDropdown(element:HTMLElement): void
    {
        console.log(element);
    }

    private getCategories(): void
    {
        this._categoryService.getAll().then((categories:Category[])=> this.categories = categories);
    }

    private getItems(): void
    {
        this._itemService.getAll().then((items:Item[])=> this.items = items);
    }

    public ngOnInit(): any
    {
        this.getCategories();
        this.getItems();
    }
}
<div id="home">

    <div id="search">
        <div class="container">

            <!-- div in question, the [ngModel] is a shot in the dark -->
            <div #myDiv class="dropdown category" [ngModel]="registerDropdown(myDiv)">
                <span class="placeholder">Selecteer categorieën</span>
                <div class="the-drop">
                    <ul class="ul">
                        <li *ngFor="#category of categories">
                            <input type="checkbox" />{{category.long}}
                        </li>
                    </ul>
                </div>
            </div>
          
        </div>
    </div>
  
</div>

4

3 に答える 3

9

イベントの読み込みについては、この記事のルーキーの間違い #2 を参照してください。

EventEmitter一般的なイベントの場合、子コンポーネント (カスタム マークアップ タグ) が親コンポーネントに子のイベントを通知する方法として役立つことがわかりました。子で、カスタム イベント ( で装飾されたクラス変数@Output()) を作成します。これは.emit()いつでも決定でき、EventEmitter の指定された のパラメーターを含めることができます<data type>。その後、親はカスタム イベントを処理し、 にバンドルしたパラメータにアクセスできます$event。Angular 2 クイックスタート ファイルを使用しています。

スクリプト:

import {Component, Output, EventEmitter} from '@angular/core';
@Component({
  selector: 'my-child',
  templateUrl: 'app/my-child.component.html'
})
export class MyChildComponent {
  @Output() childReadyEvent: EventEmitter<string> = new EventEmitter();

  ngOnInit(){
    //do any lines of code to init the child
    console.log("this executes second");
    //then finally,
    this.childReadyEvent.emit("string from child");        
  }
}

マークアップ:

<h3>I'm the parent</h3>
<my-child (childReadyEvent)="parentHandlingFcn($event)"></my-child>

スクリプト:

import {Component} from '@angular/core';
import {MyChildComponent} from './my-child.component';

@Component({
  selector: 'my-parent',
  templateUrl: 'app/my-parent.component.html',
  directives: [MyChildComponent]
})
export class MyParentComponent {

  ngOnInit(){
    console.log("this executes first");
  }

  parentHandlingFcn(receivedParam: string) {
    console.log("this executes third, with " + receivedParam); //string from child
  }

}

注:あなたも試すことができEventEmitter<MyChildComponent>ます.emit(this)

于 2016-05-25T13:36:49.327 に答える
0

さらに読むと、これを達成するには Spy を実装するのが最善の方法のようです。

https://angular.io/docs/ts/latest/guide/lifecycle-hooks.html#!#spy

于 2016-05-19T11:19:56.290 に答える
0

divusingのインスタンスを取得してから、メソッドをQueryトリガーngOnInitして、registerDropdownnativeElementQueryList<ElementRef>

export class HomeComponent implements OnInit{
  public categories: Category[];
  public items: Item[];

  constructor
  (
    public element: ElementRef,
    private _categoryService: CategoryService,
    private _itemService: ItemService,
    private _router: Router,
    @Query('myDiv') private elList: QueryList<ElementRef>
  ){}

  public registerDropdown(element:HTMLElement): void
  {
    console.log(element);
  }

  ...

  public ngOnInit(): any
  {
    this.getCategories();
    this.getItems();
    this.registerDropdown(elList.first.nativeElement);
  }
}
于 2016-02-10T23:08:30.007 に答える