OBJECT参数说明:

    success返回参数说明:

    data 数据说明:最终发送给服务器的数据是 String 类型,如果传入的 data 不是 String 类型,会被转换成 String 。转换规则如下:

    • 对于 方法的数据,会将数据转换成 query string(encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)…)
    • 对于 POST 方法且 header['content-type']application/json 的数据,会对数据进行 JSON 序列化
    • 对于 POST 方法且 header['content-type']application/x-www-form-urlencoded 的数据,会将数据转换成 query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)…)
    示例代码

    返回值:

    返回一个 requestTask 对象,通过 requestTask,可中断请求任务。

    示例代码

    1. url: 'test.php', //仅为示例,并非真实的接口地址
    2. name: 'cortana' ,
    3. age: '18'
    4. },
    5. header: {
    6. 'content-type': 'application/json'
    7. },
    8. console.log(res.data)
    9. }
    10. })
    11. requestTask.abort() // 取消请求任务
    Tip

    1. tip: content-type 默认为 'application/json';