Angular 2:{{object}}起作用,{{object.child}}抛出错误

时间:2015-12-24 16:30:57

标签: javascript angular angular2-services

已经和Angular v1合作已经有一段时间了,自从Angular v2进入Beta版以来,一直在玩这个。

现在我已经有了这段代码,但无法让它工作,真的不知道为什么。不知何故,当我打印{{profileUser | json}}时,一切正常(profileUser是一个对象)。

但是当我想要打印该对象的子节点时(例如{{profileUser.name}}{{profileUser.name.firstName}}),Angular会抛出以下错误:

EXEPTION: TypeError: undefined is not an object (evaluating 'l_profileUser0.name') in [ {{profileUser.name}} in ProfileComponent@4:11

这对我来说真的很混乱,应该只是最简单的事情之一..刚开始使用TypeScript btw ..

以下是一些代码 - ProfileService.ts

import { Injectable } from 'angular2/core';
import { Headers } from 'angular2/http';
import { API_PREFIX } from '../constants/constants';
import { AuthHttp } from 'angular2-jwt/angular2-jwt';
import 'rxjs/add/operator/map';

@Injectable()
export class ProfileService {

  API_PREFIX = API_PREFIX;

  constructor(private _authHttp:AuthHttp) {
  }

  getProfileData(username:string):any {
    return new Promise((resolve, reject) => {
      this._authHttp.get(API_PREFIX + '/users/username/' + username)
        .map(res => res.json())
        .subscribe(
          data => {
            resolve(data.data);
          },
          err => {
            reject(err);
          }
        )
      ;
    });
  }
}

这是我的ProfileComponent

import {Component, OnInit} from 'angular2/core';
import {RouteParams} from 'angular2/router';
import {ProfileService} from '../../services/profile.service';

@Component({
  selector: 'profile',
  templateUrl: './components/profile/profile.html',
  directives: [],
  providers: [ProfileService]
})

export class ProfileComponent implements OnInit {

  public username:string;
  public profileUser:any;

  constructor(private _profileService: ProfileService,
              private _params: RouteParams) {
    this.username = this._params.get('username');
  }

  ngOnInit() {
    this.getProfileData(this.username);
  }

  getProfileData(username:string):void {
    this._profileService.getProfileData(username)
      .then(data => {
        this.profileUser = data;
        console.log(data);
      })
    ;
  }
}

最后,profile.html模板:

<pre> <!-- works! -->
{{profileUser | json}}
</pre>

或..

<pre> <!-- throws the error -->
{{profileUser.name | json}}
</pre>

或..

<pre> <!-- throws the error -->
{{profileUser.name.firstName}}
</pre>

仅供参考,profileUser如下所示:

{
  "id": "9830ecfa-34ef-4aa4-86d5-cabbb7f007b3",
  "name": {
    "firstName": "John",
    "lastName": "Doe",
    "fullName": "John Doe"
  }
}

如果有人可以帮助我,那会很棒,这真的让我回过头来熟悉Angular v2。谢谢!

2 个答案:

答案 0 :(得分:21)

实际上,您的profileUser对象是从HTTP请求加载的,开头可能是nulljson管道只需JSON.stringify

您的错误消息是:undefined is not an object (evaluating 'l_profileUser0.name')

您需要确保profileUser对象不能为空,以便能够获取其name属性,依此类推。这可以使用*ngIf指令完成:

<div *ngIf="profileUser">
  {{profileUser.name | json}}
</div>

当数据存在时,将显示HTML块。

正如Eric所述,Elvis运营商也可以为您提供帮助。您可以使用{{profileUser.name | json}}

,而不是{{profileUser?.name | json}}

希望它可以帮到你, 亨利

答案 1 :(得分:3)

这是因为在创建控制器时,profileUser未定义。并且,当您使用{{profileUser | json}}时,过滤器json知道您的数据未定义且什么都不做。当最终定义profileUser时,角度更新整个事物然后profileUser | json起作用。但是,当您使用{{ profileUser.anything | json}}时,您将收到错误,因为profileUser启动undefined

你可以解决它,在控制器的开头为你的变量设置一个空的配置文件,就像那样:

profileUser = { name: {}};

这样,profileUser永远不会是undefined