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