我正在开发Ionic 5应用程序,遇到了这样的错误。
Property 'map' does not exist on type Object我在这里尝试了解决方法,但是这次他找不到第一张地图。
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { map } from 'rxjs/operators';
//import { map } from 'lodash';
@Injectable({
providedIn: 'root'
})
export class UnitService {
baseUrl='https://jsonplaceholder.typicode.com';
constructor(private http:HttpClient) { }
getUnit(){
return this.http.get(`${this.baseUrl}/users`).pipe(
map(unit => {
return unit.map((un, index) => {
un.unIndex = index + 1;
return un;
});
})
)
}
}
如何解决此错误