在这里,通过使用GET
方法,我得到了应用的作业列表。此代码来自appliedJobsPage
this.getjobs.getAppliedjobList().subscribe(data => {
this.appliedjobs = data;
})
这是我的提供商页面getJobs
getAppliedjobList() {
let headers = new Headers();
headers.append('Content-Type','application/json');
return this.http.get('http://localhost:3000/api/appliedjobs',{headers: headers})
.map(res => res.json())
.subscribe(data => {
this.jobslist = data;
});
}
我收到错误
Property 'subscribe' does not exist on type 'Subscription'. Did you mean 'unsubscribe'?
您出现此错误是因为您已经订阅了observable。
map(res => res.json())
.subscribe(data => {
this.jobslist = data;
});
如果您使用的是angular版本5或更高版本,则不需要此map(res => res.json())
。无论如何,您需要删除对服务中可观察对象的订阅,以便订阅组件中的可观察对象。在您的服务中删除以下内容:
.subscribe(data => {
this.jobslist = data;
});