node.js [superAgent] 请求使用示例

内容摘要
post请求:
复制代码 代码如下:

request.post('/api/pet')

.end(function(resp,err){

if (resp.body.status===200) {

alert('yay got ' + JSON.stringif
文章正文

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有所帮助。


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!