$xhrFactory

Improve this Doc View Source $xhrFactory

  1. service in module ng

Factory function used to create XMLHttpRequest objects.

Replace or decorate this service to create your own custom XMLHttpRequest objects.

angular.module('myApp', [])
.factory('$xhrFactory', function() {
  return function createXhr(method, url) {
    return new window.XMLHttpRequest({mozSystem: true});
  };
});

Usage

$xhrFactory(method, url);

Arguments

Param Type Details
method string

HTTP method of the request (GET, POST, PUT, ..)

url string

URL of the request.

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.6.4/docs/api/ng/service/$xhrFactory

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部