我的应用程序中出现一个奇怪的错误。它应该{{thing.title}}
从一个对象打印出来,但它在控制台中显示一个错误:
EXCEPTION: TypeError: l_thing0 is undefined in [{{thing.title}} in AppComponent@4:44]
我不确定l_thing0
来自哪里。如果我尝试{{thing}}
在页面中显示,它会显示[object Object]
. 如果我尝试JSON.stringify(this.thing)
(查看showObj()
函数),它会正确显示字符串化对象。但是,如果我尝试访问一个属性,就像{{thing.title}}
我收到l_thing0
未定义的错误一样。
这是 app.component.ts:
import {Component, OnInit} from 'angular2/core';
import {Thing} from './thing';
import {ThingService} from './thing.service';
import {SubThingComponent} from "./subthing.component";
@Component({
selector: 'thing-app',
template: `
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>{{thing.title}} <a href="#" (click)="showObj()" class="btn btn-default">Show Stringified Obj</a></h1>
<subthing></subthing>
</div>
</div>
</div>
`,
styles:[`
`],
directives: [SubThingComponent],
providers: [ThingService]
})
export class AppComponent implements OnInit {
constructor(private _thingService: ThingService) { }
public thing: Thing;
showObj() {
// This correctly shows the stringified object
alert(JSON.stringify(this.thing));
}
getThing() {
this._thingService.getThing().then(thing => this.thing = thing);
// This correctly logs the object
setTimeout(() => {console.log('thing', this.thing)}, 5000);
}
ngOnInit() {
this.getThing();
}
}
有任何想法吗?