0.1.0 • Published 5 years ago

@onface/ajax v0.1.0

Weekly downloads
1
License
-
Repository
-
Last release
5 years ago

AJAX

从jQuery 中提取出的 jQuery.ajax

  1. jQuery.ajax 接口完全一致
  2. 压缩版大小 32.65 KB
  3. GZIP大小 13.2 KB

安装

yarn add @onface/ajax
<script src="https://unpkg.com/@onface/ajax@0.1.0/ajax.js"></script>
<!-- or -->
<script src="https://unpkg.com/@onface/ajax@0.1.0/ajax.min.js"></script>

使用

var $ = require("@onface/ajax")
// or global window.$ or window.ajax
$.ajax({
    type: 'get',
    url: 'https://echo.onface.live/onface/echo/mock/list',
    data: {
        page: 2
    }
}).done(function (res) {
    console.log(res)
}).fail(function () {
    alert('网络错误')
})