[解決済み] Angular 2の@ViewChildアノテーションがundefinedを返す
質問
Angular 2を学ぼうとしています。
親コンポーネントから子コンポーネントにアクセスするために ビューチャイルド アノテーションです。
以下、いくつかのコード行を紹介します。
で BodyContent.ts 持っています。
import { ViewChild, Component, Injectable } from 'angular2/core';
import { FilterTiles } from '../Components/FilterTiles/FilterTiles';
@Component({
selector: 'ico-body-content',
templateUrl: 'App/Pages/Filters/BodyContent/BodyContent.html',
directives: [FilterTiles]
})
export class BodyContent {
@ViewChild(FilterTiles) ft: FilterTiles;
public onClickSidebar(clickedElement: string) {
console.log(this.ft);
var startingFilter = {
title: 'cognomi',
values: [ 'griffin', 'simpson' ]
}
this.ft.tiles.push(startingFilter);
}
}
にいる間 FilterTiles.ts :
import { Component } from 'angular2/core';
@Component({
selector: 'ico-filter-tiles',
templateUrl: 'App/Pages/Filters/Components/FilterTiles/FilterTiles.html'
})
export class FilterTiles {
public tiles = [];
public constructor(){};
}
最後に(コメントで提案された)テンプレートを紹介します。
ボディコンテンツ.html
<div (click)="onClickSidebar()" class="row" style="height:200px; background-color:red;">
<ico-filter-tiles></ico-filter-tiles>
</div>
フィルタータイル.html
<h1>Tiles loaded</h1>
<div *ngFor="#tile of tiles" class="col-md-4">
... stuff ...
</div>
FilterTiles.html テンプレートが正しく読み込まれるのは ico-filter-tiles タグが表示されます(実際にヘッダーが表示されています)。
注
BodyContent
クラスは、別のテンプレート(Body)内で
DynamicComponetLoader: dcl.loadAsRoot(BodyContent, '#ico-bodyContent', injector)
:
import { ViewChild, Component, DynamicComponentLoader, Injector } from 'angular2/core';
import { Body } from '../../Layout/Dashboard/Body/Body';
import { BodyContent } from './BodyContent/BodyContent';
@Component({
selector: 'filters',
templateUrl: 'App/Pages/Filters/Filters.html',
directives: [Body, Sidebar, Navbar]
})
export class Filters {
constructor(dcl: DynamicComponentLoader, injector: Injector) {
dcl.loadAsRoot(BodyContent, '#ico-bodyContent', injector);
dcl.loadAsRoot(SidebarContent, '#ico-sidebarContent', injector);
}
}
と書こうとすると、問題なのは
ft
をコンソールログに書き込むと、次のようになります。
undefined
そしてもちろん、quot;tiles" 配列の中に何かを押し込もうとすると例外が発生します。
'no property tiles for "undefined"' です。
.
もうひとつ。
FilterTiles
コンポーネントが正しく読み込まれているようです。このコンポーネントの html テンプレートが表示されるからです。
何か提案はありますか?
解決方法は?
私も同じような問題があり、同じ失敗をした人がいるかもしれないと思い、投稿しました。まず、考慮すべき点として
AfterViewInit
にアクセスする前に、ビューが初期化されるのを待つ必要があります。
@ViewChild
. しかし、私の
@ViewChild
はまだnullを返していました。問題は私の
*ngIf
. その
*ngIf
ディレクティブがコントロールズコンポーネントを殺してしまっていたので、それを参照することができませんでした。
import {Component, ViewChild, OnInit, AfterViewInit} from 'angular2/core';
import {ControlsComponent} from './controls/controls.component';
import {SlideshowComponent} from './slideshow/slideshow.component';
@Component({
selector: 'app',
template: `
<controls *ngIf="controlsOn"></controls>
<slideshow (mousemove)="onMouseMove()"></slideshow>
`,
directives: [SlideshowComponent, ControlsComponent]
})
export class AppComponent {
@ViewChild(ControlsComponent) controls:ControlsComponent;
controlsOn:boolean = false;
ngOnInit() {
console.log('on init', this.controls);
// this returns undefined
}
ngAfterViewInit() {
console.log('on after view init', this.controls);
// this returns null
}
onMouseMove(event) {
this.controls.show();
// throws an error because controls is null
}
}
お役に立てれば幸いです。
EDIT
によって言及されているように
以下、@Ashg
を使用することで、解決することができます。
@ViewChildren
の代わりに
@ViewChild
.
関連
-
[解決済み] TypeScriptの円形型参照
-
[解決済み] 2つのインターフェイスを統合する
-
[解決済み] TypeScriptの「as const」の意味とその使用例とは?
-
[解決済み] TypeScriptでオブジェクトを初期化する方法
-
[解決済み] Angular HTMLバインディング
-
[解決済み] 'unknown' vs. 'any'
-
[解決済み] String型とstring型の違いは何ですか?
-
[解決済み] TypeScriptのクラス型チェック
-
[解決済み】TypeScriptの関数のオーバーローディング
-
[解決済み】Angularの@ViewChild()のエラーです。2つの引数を期待したが、1つを得た
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み】tsconfigファイルにおけるesModuleInteropの理解
-
[解決済み】プロパティ 'value' が 'HTMLElement' 型の値に存在しない。
-
[解決済み] エラー TS2322: タイプ 'Object[]' はタイプ '[Object]' に割り当てられません。
-
[解決済み] 重複した識別子」という紛らわしいTypescriptエラーメッセージが発生する。
-
[解決済み] グローバル定数の定義
-
[解決済み] as "というキーワードは何を意味するのでしょうか?
-
[解決済み] 'タイプ 'never'にプロパティが存在しません。
-
[解決済み] Typescriptでオブジェクトのプロパティを結合する方法は?
-
[解決済み] モジュール 'module-name' の宣言ファイルが見つかりませんでした。'/path/to/module-name.js' は暗黙のうちに 'any' 型を持っています。
-
[解決済み】*ngIfの@ViewChild