欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅谈angular2的http请求返回结果的subcribe注意事项

程序员文章站 2022-04-29 08:37:45
实例如下: this.monitorser.getvehiclelonandlat(vehicleids) .subscribe( data =>...

实例如下:

this.monitorser.getvehiclelonandlat(vehicleids)
 .subscribe(
  data => {
   //将data下的data字符串转化为vehdata数组
   this.vehdata=json.parse(data.data);
   //功能实现
   this.loadoverlay();
  },

  error => this.errormessage = <any>error

);//错误处理

subscribe()异步处理,如果需要用返回的数据,最好把方法写在里面。

以上这篇浅谈angular2的http请求返回结果的subcribe注意事项就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。