我正在使用HttpClient从我的PHP Api获取数据以获取角度
但是当我调用checkYear
方法时,地图运算符中的代码无法运行(没有控制台日志,没有返回数据)。
这是我的服务代码
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { BACKEND_URL } from '../constants';
import { map } from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class YearService {
constructor(private http : HttpClient) { }
checkYear(year:string)
{
return this.http.get(BACKEND_URL + "/annees/getbyname/" + year).pipe(
map( res => {console.log("from db",res);return res})
)
}
}
我需要帮助!