继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

轻量级HTTP请求库:request-my

慕函数0178931
关注TA
已关注
手记 2
粉丝 0
获赞 3

做项目的初衷: 大家经常用http请求,以前用的比较多的是jq的ajax,现在用的多的是axios,我就是想写一个比较简单的http请求工具,平时html也能使用,就是简单使用及测试用的。希望大家多多使用。

安装

使用 npm:

$ npm install request-my --save

例子

Usage
ES2015

import {api} from 'request-my';

api.ajax({
    url:'xxx:3000/post',
    type:'post',
    data:{
      name:'shibin'
    },
    success:function(res){
      console.log(res)
    },
    error:function(err){
      console.log(err);
    }
})

浏览器使用
The dist folder contains index.js.


<script type="text/javascript" src="./dist/request-my.min.js"></script>
<script>
api.ajax({
    url:'xxx:3000/post',
    type:'post',
    data:{
      name:'shibin'
    },
    success:function(res){
      console.log(res)
    },
    error:function(err){
      console.log(err);
    }
})
</script>
打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP