您如何自定义按角度映射返回项的数组?假设您想更改后端模型以适合您的类型脚本模型。我不断收到错误消息-新项目需要0个参数。我发现的大多数示例都涉及自动映射,假设前端和后端之间的数据类型相同
public items: item[];
constructor(private http: HttpClient) {
}
GetAllItems() : Observable<Item[]> {
return this.http.get<Item[]>('https://localhost:44327/Test/GetAllItems').subscribe(result => {
result.map(item => new Item(
property1: String(item.property1),
property2: item.property2,
property3: new Date(item.property3)
));
})
}