为什么每次api调用都会得到<prototype>对象

时间:2020-01-06 05:42:44

标签: typescript rest api fetch jsonplaceholder

我在Angular中使用JSONPlaceholder。我正在学习这些东西,所以我的问题可能不太清楚。我仔细阅读了文档,并且也得到了正确的输出。但是,每个对象都有一些额外的好处。看到

enter image description here

在此示例中,我使用id: 1获取记录。但是以后会有成千上万的这样的记录,而且看起来非常脏。但是在他们的整个文档中都没有提到这样的事情。我该如何过滤掉。我的打字稿代码非常简单。

card.component.ts

import { Component, OnInit } from '@angular/core';

@Component({
  ...
})
export class CardsComponent implements OnInit {

  constructor() { }

  ngOnInit() {
    this.fetchAllRecords();
  }

  fetchAllRecords() {
    fetch('https://jsonplaceholder.typicode.com/albums/1')
    .then(response => response.json())
    .then(json => console.log(json))
  }
}

在这里,我还创建了一个stackblitz。请纠正我。

0 个答案:

没有答案