当前位置: 首页 > 文档资料 > Rax 中文文档 >

Request

优质
小牛编辑
135浏览
2023-12-01

用于发起网络请求。

安装

$ npm install universal-request --save

方法

request(options)

参数

属性类型必选默认值描述
optionsObject-
opthons.urlString-请求的 URL 地址
opthons.headersObject{ 'Content-Type': 'application/json'}设置请求的头部
options.methodStringGET可用的值有:GET/POST/PUT/DELETE/PATCH/HEAD,小程序中仅支持 GET/POST
options.dataObject-GET 请求或 POST 请求设置headers['content-Type'] 为 application/x-www-form-urlencoded时会拼接到 URL 中,其他情况请求会转换为 JSON 字符串以请求体的形式给服务端
options.timeoutNumber20000 (ms)超时时间
options.dataTypeStringjson期望返回的数据格式, json 或者 text ,若转换失败,则原样返回

返回

请求成功返回:Promise<Response>

成员类型描述
responseObject-
response.dataString请求返回数据,按照 dataType 中声明的类型转换,若转换失败则原样返回
response.headersObject请求的返回头部
response.statusNumber请求返回的状态码

请求失败返回为 object 类型,属性如下:

成员类型描述
codeNumber错误码
messageString错误说明

错误码:

codemessage说明
0请求失败的详细说明除以下列出请求外的,请求失败
1Request timeout请求超时
2Request not support this platform不支持该平台

示例

import request from 'universal-request';

request({
  url: 'https://alibaba.github.io/rax/',
  method: 'POST',
  data: {
    from: 'Rax',
  },
  dataType: 'json'
}).then(response => {})
  .catch(error => {});