Angular 5 http post / put update ui

时间:2018-02-19 15:02:23

标签: angular angular5 angular-http

我无法在角色5的http post / put调用后更新我的UI。 变量this.showSuccesMessage始终为false。

const sequence$ = this.http.post("http://localhost:5000/api/testcall",
  obj, { headers: new HttpHeaders().set('Content-Type', 'application/json'),
  responseType: 'text' });

  sequence$.subscribe(() => {console.log('ok done');
  this.showSuccesMessage = true;
});

我甚至尝试过NgZone methoth(zone.run)。谁能帮我 ?

谢谢!

0 个答案:

没有答案