31封装一个网络请求的服务

Posted shanlu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了31封装一个网络请求的服务相关的知识,希望对你有一定的参考价值。

①创建一个服务类

  @Injectable()

  在服务类中定义方法、数据

  sendRequest ( myUrl : string ) {

    return this.http.get( myUrl ).map(  (response : Response) => response.json()  )

  }

②给服务指定提供商

  providers : [ MyHttpService ]  模块、组件限定作用范围

③调用服务

  import { }

  this.myHttpService.sendRequset( ‘ 请求的地址 ‘ ).subscribe ( (result : any) => {  console.log (reuslt)})

以上是关于31封装一个网络请求的服务的主要内容,如果未能解决你的问题,请参考以下文章

Android网络篇(四)—— 自己动手封装一个属于自己的网络请求框架

axios请求封装,请求异常统一处理

微信小程序开发——使用promise封装异步请求

鸿蒙网络请求(下):工具类封装和使用

鸿蒙网络请求(下):工具类封装和使用

Android实际开发之网络请求组件的封装(OkHttp为核心)