ฉันพยายามเรียนรู้ Angular 2
ฉันต้องการเข้าถึงองค์ประกอบลูกจากองค์ประกอบหลักโดยใช้@ViewChild Annotation
นี่คือบางส่วนของรหัส:
ใน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(){};
}
ในที่สุดแม่แบบที่นี่ (ตามที่แนะนำในความคิดเห็น):
BodyContent.html
<div (click)="onClickSidebar()" class="row" style="height:200px; background-color:red;">
<ico-filter-tiles></ico-filter-tiles>
</div>
FilterTiles.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', หัวฉีด):
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
และแน่นอนฉันจะได้รับข้อยกเว้นเมื่อฉันพยายามที่จะผลักดันบางสิ่งบางอย่างภายใน "กระเบื้อง" อาร์เรย์: 'ไม่กระเบื้องอสังหาริมทรัพย์สำหรับ "ไม่ได้กำหนด'
อีกอย่างหนึ่ง: ดูเหมือนว่าส่วนประกอบตัวกรองจะโหลดอย่างถูกต้องเนื่องจากฉันสามารถเห็นแม่แบบ html ได้
ข้อเสนอแนะใด ๆ ขอบคุณ
ft
จะไม่ถูกตั้งค่าในตัวสร้าง แต่ในตัวจัดการเหตุการณ์คลิกมันจะถูกตั้งค่าไว้แล้ว
loadAsRoot
งานซึ่งมีปัญหาที่ทราบแล้วเกี่ยวกับการตรวจจับการเปลี่ยนแปลง เพียงเพื่อให้แน่ใจลองใช้หรือloadNextToLocation
loadIntoLocation
loadAsRoot
ปัญหาก็คือ เมื่อฉันแทนที่ด้วยloadIntoLocation
ปัญหาได้รับการแก้ไข หากคุณแสดงความคิดเห็นเป็นคำตอบฉันสามารถทำเครื่องหมายเป็นที่ยอมรับได้