| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
w427
9年前发布

轻量的Ajax API:SuperAgent

SuperAgent 是一个轻量的Ajax API,服务器端(Node.js)客户端(浏览器端)均可使用,SuperAgent具有学习曲线低、使用简单、可读性好的特点,可作为客户端请求代理模块使用,当你想处理get,post,put,delete,head请求时,可以考虑使用SuperAgent。

浏览器支持:

Sauce Test Status

示例代码:

 request     .post('/api/pet')     .send({ name: 'Manny', species: 'cat' })     .set('X-API-Key', 'foobar')     .set('Accept', 'application/json')     .end(function(err, res){       if (res.ok) {         alert('yay got ' + JSON.stringify(res.body));       } else {         alert('Oh no! error ' + res.text);       }     });

SuperAgent请求的默认方法为GET,所以你可可以简单地写如下代码:

request('/search', function(res){     });

项目主页:http://www.open-open.com/lib/view/home/1433057647639

 本文由用户 w427 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1433057647639.html
Ajax框架 SuperAgent