2.0.1 • Published 6 years ago

nuke-axios v2.0.1

Weekly downloads
4
License
Apache
Repository
gitlab
Last release
6 years ago

NukeAxios

  • category: Components
  • chinese: 网络请求
  • type: 基本

克隆自weex-axios,由于 weex-axios 作者无法追踪,因此 folk 一份略微改动,用于 rax 下网络请求。组件在 weex 下使用 weex-module/stream 模块发送请求, 在 web 端使用 XMLHttpRequest 对象。

demo

import Axios from 'nuke-axios';

Axios.get('https://www.easy-mock.com/mock/58ff29ea5e43ae5dbea5f6d1/nuke-demo/user')
    .then(function (response) {
      alert(JSON.stringify(response.data));
    })
    .catch(function (error) {
      console.log(error);
    });