Когда в компоненте я получаю ответ от нашего Rest Api, но когда я перемещаю код в службу, он не будет давать ответ с данными.
Это код в моем компоненте:
import { HttpClient } from '@angular/common/http';
nodes: any = [];
this.http.get('https://prokom-aimcms-dev.azurewebsites.net/api/contentapi/getall', {observe: 'response'})
.subscribe(response => {
this.nodes = response;
});
Это даст ответ:
{
"headers": {
"normalizedNames": {},
"lazyUpdate": null,
"lazyInit": null,
"headers": {}
},
"status": 200,
"statusText": "OK",
"url": "someUrl",
"ok": true,
"type": 4,
"body": [
{
"id": 1,
"contentId": "59f37a5c-b209-4813-a11b-0d2e34ec5530",
"created": "2019-02-05T08:49:00.207078",
"modified": "2019-02-21T13:02:19.2983893",
"title": "TEst",
"published": null,
"creator": null,
"state": 0,
"sortIndex": 0,
"contentObject": null,
"metaObject": null,
"parameterObject": null,
"version": 0,
"language": "nb_no",
"parentContent": "00000000-0000-0000-0000-000000000000",
"relatedContents": [
"aa8e9c90-adbb-4853-98b9-53e431e27c4b"
],
"tags": [],
"categories": []
},
.......
Но если я перенесу это в службу (somename.service.ts):
import { HttpClient } from '@angular/common/http';
public getAllNodes(): Observable<any> {
return this.http.get('someURL', {observe: 'response'})
.map(response => {
return response;
});
}
И вызвать его из компонента (somename.component.ts)
this.nodes = this.aimService.getAllNodes().subscribe();
Тогда ответ будет:
{
"closed": true,
"_parent": null,
"_parents": null,
"_subscriptions": null,
"syncErrorValue": null,
"syncErrorThrown": false,
"syncErrorThrowable": true,
"isStopped": true,
"_parentSubscription": null,
"destination": {
"closed": true,
"_parent": null,
"_parents": null,
"_subscriptions": null,
"syncErrorValue": null,
"syncErrorThrown": false,
"syncErrorThrowable": false,
"isStopped": true,
"_parentSubscription": null,
"destination": {
"closed": true
},
"_parentSubscriber": null,
"_context": null
}
}
Кто-нибудь знает, почему это так?И как я могу получить данные из службы.