加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angular $http 官方实例说明

发布时间:2020-12-17 10:05:48 所属栏目:安全 来源:网络整理
导读:General usage The $http service is a function which takes a single argument — aconfiguration object— that is used to generate an HTTP request and returns apromise. // Simple GET request example: $http ({ method : 'GET' , url : '/someUrl'

General usage

The$httpservice is a function which takes a single argument — aconfiguration object— that is used to generate an HTTP request and returns apromise.

// Simple GET request example: $http({ method: 'GET', url: '/someUrl' }).then(function successCallback(response) { // this callback will be called asynchronously // when the response is available }, function errorCallback(response) { // called asynchronously if an error occurs // or server returns response with an error status. });

The response object has these properties:

  • data{string|Object}– The response body transformed with the transform functions.
  • status{number}– HTTP status code of the response.
  • headersfunction([headerName])}– Header getter function.
  • config{}– The configuration object that was used to generate the request.
  • statusText}– HTTP status text of the response.

A response status code between 200 and 299 is considered a success status and will result in the success callback being called. Any response status code outside of that range is considered an error status and will result in the error callback being called. Also,status codes less than -1 are normalized to zero. -1 usually means the request was aborted,e.g. using aconfig.timeout. Note that if the response is a redirect,XMLHttpRequest will transparently follow it,meaning that the outcome (success or error) will be determined by the final response status code.

Shortcut methods

Shortcut methods are also available. All shortcut methods require passing in the URL,and request data must be passed in for POST/PUT requests. An optional config can be passed as the last argument.

$http.get('/someUrl', config).then(successCallback, errorCallback); $http.post( data, errorCallback);

Complete list of shortcut methods:

  • $http.get
  • $http.head
  • $http.post
  • $http.put
  • $http.delete
  • $http.jsonp
  • $http.patch
原文地址:https://docs.angularjs.org/api/ng/service/$http

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读