码迷,mamicode.com
首页 > Web开发 > 详细

node.js [superAgent] 请求

时间:2015-03-11 17:32:58      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

post请求: 
 request.post(‘/api/pet‘)
   .end(function(resp,err){
     if (resp.body.status===200) {
       alert(‘yay got ‘ + JSON.stringify(res.body));
     } else {
       return next(resp.body);
     }
   });
get请求: 
 request.get(‘/api/pet‘)
     ...
   });
delete请求: 
 request.del(‘/api/pet‘)
     ...
   });
put请求: 
 request.put(‘/api/pet‘)
     ...
   });


node.js [superAgent] 请求

标签:

原文地址:http://my.oschina.net/u/1778309/blog/385429

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!