轻量的Ajax API:SuperAgent

w427 9年前

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