angular 自定义服务封装自定义http请求

Posted 欣欣点灯

tags:

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

在angular中将http请求,放置在一起封装成服务,可减少代码重复,方便使用

var ngpohttprest = angular.module(ngpohttprest, []);

ngpohttprest.factory(httpItemCore,
  function ($http, $q) {
      return {
          search: function (params) {
              var defer = $q.defer();
              $http({
                  method: get,
                  params: params,
                  url: /MGCode/Item/ItemCoreInfo
              }).success(function (data) {
                  defer.resolve(data);
              }).error(function (data) {
                  defer.reject(data);
              });
              return defer.promise
          }
      };
  });

 

以上是关于angular 自定义服务封装自定义http请求的主要内容,如果未能解决你的问题,请参考以下文章

自定义socket实现HTTP

自定义Angular服务

Angular:自定义标头被 $http 和 $resource 忽略。为啥?

Angular HTTP 拦截器自定义预检

angular的自定义指令---详解

自定义请求头引起预检请求