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

这篇文章主要介绍了node.js [superAgent] 请求使用示例,分别给大家汇总了post请求、get请求、delete请求和put请求的示例,推荐给大家,希望大家能够喜欢。

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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgfwxp.html