Node.js使用superagent模拟GET/POST请求样例

Posted <・)))><<

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js使用superagent模拟GET/POST请求样例相关的知识,希望对你有一定的参考价值。

示例代码:

var superagent = require(‘superagent‘);

superagent.get("http://localhost:8091/user/all?reqUsername=admin&reqPasswd=654321")
    .end( (err, res)=> {
        if (err) {
            console.log("出错:" + err);
        } else {
            console.log(res.text);
        }
    } );

// user add
var url = "http://localhost:8091/user/update"
superagent.post(url)
    .type("form")
    .send({
        id: ‘5‘,
        fullname: ‘刘德华‘,
        username: ‘8839001‘,
        passwd: ‘111111‘,
        branch: ‘123001‘,
        rights: ‘3‘,
        memo: ‘依然范特西‘,
        reqUsername: ‘admin‘,
        reqPasswd: ‘654321‘
    })
    .end( (err, res)=> {
        if (err) {
            console.log("出错:" + err);
        } else {
            console.log(res.text);
        }
    } );

以上是关于Node.js使用superagent模拟GET/POST请求样例的主要内容,如果未能解决你的问题,请参考以下文章

superagent 和 nock 如何协同工作?

node.js 使用 superagent 与 cheerio 完成简单爬虫

node.js之爬虫

在 node.js 服务器上使用 supertest/superagent 读取响应输出缓冲区/流

如何在 node.js 中引入插件模块?

SuperAgent使用简介