Как установить тот же самый повар ie для этого вызова API? - PullRequest
0 голосов
/ 10 марта 2020

У меня есть вызов API в моем приложении ioni c angular, теперь нет сервера (так как это ioni c), так где я могу установить тот же самый повар ie для этого вызова API?

const apiKey = environment.apiKey
const apiUrl = environment.apiUrl

const params = new HttpParams().set('apiKey', apiKey)

@Injectable({
  providedIn: 'root'
})
export class NewsService {
  loading

  constructor(private http: HttpClient, public loadingController: LoadingController) { }

  async showLoading() {
    this.loading = await this.loadingController.create({
      duration:500
    })
    return await this.loading.present()
  }

  getData(url) {
    this.showLoading()
    return this.http.get(`${apiUrl}/${url}`, {params}).pipe(
      tap(value =>
      {
       if(this.loading) {
         this.loading.dismiss()
        }
        console.log('FETCHING ARTICLES')
      })
    )
  }
}
...