gpt4 book ai didi

javascript - 在响应正文与 Node.js 请求之间未定义?

转载 作者:太空宇宙 更新时间:2023-11-04 02:48:49 25 4
gpt4 key购买 nike

开始学习Node.js,发送POST使用 Node.js 请求:

var http = require('http')
, https = require('https')
, _ = require('underscore')
, querystring = require('querystring');

// Client constructor ...

Client.prototype.request = function (options) {
_.extend(options, {
hostname: Client.API_ENDPOINT,
path: Client.API_PATH,
headers: {
'user-agent': this.agent
}
});

var req = (this.secure ? https : http).request(options);
if(options.data) req.write(querystring.stringify(options.data));

req.end();

req.on('response', function (res) {
res.on('data', function (chunk) {
res.body += chunk;
});

res.on('end', function () {
console.log(res.body);
});
});
}

body 展示:undefined<xml version="1.0" encoding="UTF-8"> .

undefined从哪里来?

最佳答案

在添加之前,您必须初始化 res.body:

// some other code
req.on('response', function (res) {
res.body = "";
res.on('data', function (chunk) {
res.body += chunk;
});

res.on('end', function () {
console.log(res.body);
});
});

否则,您将添加到 undefined ,它将 undefined 转换为字符串 "undefined"

关于javascript - 在响应正文与 Node.js 请求之间未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14857654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com