Я не могу получить данные из метода GET
.У меня есть страница с именем job.ts
На этой странице я вызываю метод, который находится в файле другого поставщика / услуги ts
.
` // This part of the code is from the provider/service .ts file.
getSavedJobList(userId) {
let headers = new HttpHeaders();
headers.append('Content-Type','application/json');
return this.http.get(this.db_url + 'savedjobList/' + userId,{headers: headers})
.subscribe((data: any) => {
console.log(data);
return data
},(err: any) => console.log(err));
}
// this part of the code is from the job.ts file
async getSavedJobs() {
let id = await this.profileId();
this.jobService.getSavedJobList(id).then((list: any) => {
for (let job of list) {
this.savedjobs.push(job);
}
}).catch((err: any) => {
console.log('err in getting the saved jobs '+ err);
});
}
} `
Здесь никаких действий не происходит.