createRequestOption(req);
return this.http
.get<ICustomerOrder[]>(this.resourceUrl, { params: options, observe: 'response' })
.pipe(map((res: EntityArrayResponseType) => this.convertDateArrayFromServer(res)));
}
почему у вас в map другой тип response, отличный от T, передаваемый в get
Обсуждают сегодня