ElectronJS:使用net发起http post请求时,后台获取不到数据的问题

Electron官方推荐使用net直接发起http/https请求。
在使用get方式时,java后台很轻松就解析出了传输的数据。
但使用post方式时,后台一直显示为null
多方调查后发现,net和ajax请求方式一样,某些时候不能使用json的数据格式。
以下为正确格式

const {net} = require('electron').remote;
const querystring = require('querystring');
var cache = [];
var postData = querystring.stringify({
    'test' : '111'
});

// 请求体
const request = net.request({
    method: 'POST',
    protocol: 'http:',
    hostname: '127.0.0.1',
    port: 8080,
    path: '/Test',
    headers: {
    	// 这里要将content-type改成这种提交form表单时使用的格式
        'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
        // 标明数据长度
        'Content-Length': postData.length
    }
});

// 回调
request.on('response', (response) => {
    console.log(`**statusCode:${response.statusCode}`);
    // 将response的内容输出出来
    console.log(`**header:${JSON.stringify(response, function(key, value) {
        if (typeof value === 'object' && value !== null) {
            if (cache.indexOf(value) !== -1) {
                // 移除
                return;
            }
            // 收集所有的值
            cache.push(value);
        }
        return value;
    })}`);
    cache = null;
    response.on("data", (chunk) => {
        console.log("接收到数据:", chunk.toString());
    })
    response.on('end', () => {
        console.log("数据接收完成");
    })
});
// 写入数据
request.write(postData);
// 结束请求
request.end();

主要就是把content-type的类型换一下,完美解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值