第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Angular 2 @ViewChild批注返回未定義

Angular 2 @ViewChild批注返回未定義

千萬(wàn)里不及你 2019-11-08 12:54:11
我正在嘗試學(xué)習(xí)Angular 2。我想使用@ViewChild Annotation 從父組件訪問(wèn)子組件。下面是幾行代碼:在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中時(shí): 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標(biāo)記中(實(shí)際上,我能夠看到標(biāo)頭)。注意:BodyContent類使用DynamicComponetLoader注入到另一個(gè)模板(Body)中: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]})問(wèn)題是,當(dāng)我嘗試寫(xiě)入ft控制臺(tái)日志時(shí),我得到了undefined,當(dāng)然,當(dāng)我嘗試將某些內(nèi)容推入“ tiles”數(shù)組中時(shí),我當(dāng)然會(huì)遇到異常:“ no屬性tile為“ undefined””。還有一件事:FilterTiles組件似乎已正確加載,因?yàn)槲夷軌蚩吹剿膆tml模板。有什么建議嗎?謝謝
查看完整描述

3 回答

?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以使用二傳手 @ViewChild()


@ViewChild(FilterTiles) set ft(tiles: FilterTiles) {

    console.log(tiles);

};

如果您具有ngIf包裝器,則將使用未定義的setter進(jìn)行調(diào)用,然后使用ngIf允許其呈現(xiàn)的引用再次進(jìn)行調(diào)用。


我的問(wèn)題是別的。我沒(méi)有在我的app.modules中包含包含“ FilterTiles”的模塊。模板沒(méi)有引發(fā)錯(cuò)誤,但是引用始終是未定義的。


查看完整回答
反對(duì) 回復(fù) 2019-11-08
  • 3 回答
  • 0 關(guān)注
  • 674 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)