角度$ http发布不适用于另一个角度$ http get api

时间:2020-06-12 05:59:40

标签: angular http

不是这样的工作代码:

class userService {

  getServerTime: ()=> {
   return this.$http.get(url);
 }

}

this.userService.getServerTime().subscribe(date: ITime => {
  this.$http.post(url,data,{
    responseType:'text' 
  });
})

//如果我添加订阅该帖子,则该帖子有效。

this.userService.getServerTime().subscribe(date: ITime => {
      this.$http.post(url,data,{
        responseType:'text' 
      }).subscribe();
    })

有人可以解释原因吗? tks

0 个答案:

没有答案