不能由角2个数据绑定从服务访问返回的对象的属性(can't access a returne

2019-09-30 10:35发布

处理

我使用的服务来获取从JSON文件数据(对象)与观察到的和在HTML模板显示出来。

问题

我无法使用访问对象的属性{{obj.prop}}它抛出一个错误"Cannot read property 'prop' of undefined".
但是,如果我尝试访问它的部件,它的工作原理。

contentService的

import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Rx';
import 'rxjs/Rx';

@Injectable()
export class ComponentContentService {
  constructor(private _http: Http) { }

  getContent() {
   return this._http
     .get('./app/services/dataContent.json')
     .map((response:Response) => response.json())
     .do(response => console.log('response = ', response))
  }
}

TopContentComponent

import { Component } from '@angular/core';
import { WowComponent } from '../libraries.components/wow.component/wow.component';
import { BackstretchComponent } from '../libraries.components/backstretch.component/jquery.backstretch.component';
import { ComponentContentService } from '../services/component.content.service';
@Component({
  selector: 'top-content',
  templateUrl: './app/top-content.component/top-content.component.html',
  directives: [WowComponent, BackstretchComponent]
})
export class TopContentComponent {
  header  : any;
  description : any;
  data : any;
  constructor(private _ComponentContentService: ComponentContentService) {}

  ngOnInit() {this.getComponentContent();}

  getComponentContent() {
    this._ComponentContentService.getContent()
      .subscribe(
        (data) => {
          this.data = data;
        }
      );
  }
}

模板

<p>{{data.header.title}}<p>

JSON

{
  "header" : {
    "title":"Our New Course is Ready",
    "description" : "We have been working very hard"
  },
  "Footer" : {
    "title":"Our New Course is Ready",
    "description" : "We have been working very hard to create the new version of our course. It comes with a lot of new features, easy to follow videos and images. Check it out now!"
  },
}

Answer 1:

你应该改变{{data.header.title}}{{data?.header?.title}}



文章来源: can't access a returned object properties from a service by angular 2 data binding