Node.js http请求java后台数据接口方法总结

var http = require("http");
 
var data = {
    username:"name",
    password:"123456"
};
data = JSON.stringify(data);
 
var opt = {
    host:'localhost',
    port:'8080',
    method:'POST',
    path:'/loginForeign.jspx',
    headers:{
        "Content-Type": 'application/json',
        "Content-Length": data.length
    }
}
 
var body = '';
var req = http.request(opt, function(res) {
    console.log("response: " + res.statusCode);
    res.on('data',function(data){
        body += data;
    }).on('end', function(){
        console.log(body)
    });
}).on('error', function(e) {
    console.log("error: " + e.message);
})
req.write(data);
req.end();

 

const http = require("http");

exports.getAP = getAP;


function getAP (data, callback) {
    try {
        var Data = {
            "devId" : data.devId ||'' ,
            "field" : data.field ||'',
            };
        var options = {
            host:'localhost',
            port:'8080',
            path: '/device/getAp',
            method: 'POST',
            headers: {
                'Accept': 'application/*',
                'Content-Type': 'application/json'
            }
        };
        var chunk = '';
        var req = http.request(options, function (res) {
            res.setEncoding('utf8');
            res.on('data', function (resp) {
                chunk += resp;
            });
            res.on('end', function () {
                var body = '';
                console.warn(body);
                //获取数据处理
                if (body.code == 0 && body.data.data) {
                    callback(null, body.data.data);
                } else {
                    callback(body.message || 'failed', null);
                }
            });
        });

        req.on('error', function (e) {
            //打印错误信息
            console.error('problem with request: ' + e.message);
            callback(e, null);
        });

        // write data to request body
        //req.write(JSON.stringify(Data));
        req.end();
    } catch (e) {
        callback(e, null);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值