【发布时间】:2021-06-21 06:20:23
【问题描述】:
当我从服务中获取数据时,Angular 也进入了“第一”的位置。但是,没有点击页面上的任何按钮,并没有进入我写“秒”的地方。
GetAllVessels(){
alert('first');
this.AllVessels=this.http.get<Vessel[]>(this.baseUrl+'Vessel/GetAllVessels',httpOptions).pipe(
map((result: Vessel[]) => {
console.log(result);
alert('second');
return result;
})
);
【问题讨论】:
-
你不是已经问过类似的问题了吗?如果不显示您致电
GetAllVessels的位置,我们将无能为力。 -
没有调用
subscribe方法
标签: angular http web-services rxjs5