Я пытаюсь получить данные от mongodb, для которых я написал сервис. Но я получаю сообщение об ошибке типа error TS2339: Property 'map' does not exist on type 'Observable<Response>'
Пожалуйста, помогите мне решить эту ошибку ...
import { Injectable } from '@angular/core';
import { Http, Headers, RequestOptions } from '@angular/http';
import 'rxjs/add/operator/map';
@Injectable()
export class DataService {
result:any;
constructor(private _http: Http) { }
getUsers() {
return this._http.get("/api/users")
.map(result => this.result = result.json().data);
}
}