7

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

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

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

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

这对我来说真的很困惑,应该只是最简单的事情之一.. 刚开始使用 TypeScript 顺便说一句..

这是一些代码 - 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。谢谢!

4

2 回答 2

21

实际上,您的profileUser对象是从 HTTP 请求加载的,并且可以null在开头。json管道只是做JSON.stringify一个.

这就是你的错误信息所说的:undefined is not an object (evaluating 'l_profileUser0.name')

您需要确保您的profileUser对象不为空才能获取其name属性等等。这可以使用*ngIf指令来完成:

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

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

正如Eric所说,猫王接线员也可以为您提供帮助。而不是拥有{{profileUser.name | json}},你可以使用{{profileUser?.name | json}}.

希望它可以帮助你,蒂埃里

于 2015-12-24T16:49:14.827 回答
3

发生这种情况是因为创建控制器时,profileUser未定义。而且,当您使用{{profileUser | json}}过滤器时,您json知道您的数据是未定义的并且什么也不做。当profileUser最终定义时,角度会更新整个事物然后profileUser | json工作。但是,当你使用{{ profileUser.anything | json}}你会得到一个错误,因为 profileUser 启动undefined

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

profileUser = { name: {}};

这样,profileUser永远不会undefined

于 2015-12-24T16:49:29.943 回答