Angular 2 Array打印在控制台上,但无法在屏幕上打印对象属性

时间:2016-12-01 11:18:54

标签: javascript arrays json angular typescript

我在我创建的服务中有以下方法:

  getPost(nid: string): Observable<Post[]>{
    let url = "http://test.co.uk/api/v1/basic/" + nid;
    return this.http.get(url,  {headers: this.headers}).map(res => res.json() as Post).catch(err => {

      return Observable.throw(err);
    });
  }

这是我的组件的类:

export class PostDetailComponent implements OnInit {
  posts: Post[] = [];
  post: Post = new Post();
  constructor(
private route: ActivatedRoute,
private postService: PostService
) { }
  ngOnInit() {

    this.route.params.switchMap((params: Params) => {
      let nid = params ['nid'];
      return this.postService.getPost(nid);  }).subscribe(res => {
      console.log(res)
      this.post = res as Post;
    }, err =>{
      console.log(err);
  });

  }

}

JSON feed看起来像这样(是数组中的一个对象):

  [  
   {  
      "nid":"3",
      "title":"When Unity meets Vuforia",
      "body":"<p>Unless you have been living under a rock in the past 7 - ...",
      "uid":"admin",
      "path":"\/node\/3",
      "field_article_image":"http:\/\/test.co.uk\/sites\/default\/files\/when-unity-meets-vuforia_0.jpg?itok=BGYaotay"
   }
]

所以在我的模板中,如果我打印{{post}},我会在屏幕上显示[object Object]。

如果我打印{{post | json}},我会获得行JSON Feed。

最后,如果我打印{{post.title}}{{post?.title}},我什么也得不到。

我也有一个类似Post的课程:

export class Post{
  constructor(

public nid?: string,
public title?: string,
public body?: string
public image?: string
  ){
  }
}

任何提示?

1 个答案:

答案 0 :(得分:2)

您正在将数组分配到应该是单个对象的内容中。将数组的第一个元素复制到post变量

this.post = res[0] as Post

附注:将原始对象分配给类实例是不正确的。在这种情况下,您的this.post.constructor不存在并且this.post instanceof Post == false

您可以执行Object.assign(this.post, res[0])但如果并非所有属性始终存在,您可能需要清除现有属性。

我更喜欢将对象形状定义为接口,然后你不会遇到这个问题,因为所有的接口信息都是在运行时删除的,而类确实会发出一些代码而不是仅仅在编译时进行静态类型检查