首頁  >  文章  >  web前端  >  Node.js使用superagent模擬GET/POST的請求

Node.js使用superagent模擬GET/POST的請求

不言
不言原創
2018-07-09 17:09:473269瀏覽

这篇文章主要介绍了关于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);
        }
    } );

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网! 

 相关推荐:

js获取页面元素距离浏览器工作区顶端的距离

react  request.js函数封装

以上是Node.js使用superagent模擬GET/POST的請求的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn