使用HTTPS GET请求的结果[Node.js] [重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用HTTPS GET请求的结果[Node.js] [重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我认为我遇到了一个小问题,但我无法找到解决问题的方法。我想使用Node.js HTTPS GET请求在变量中加载远程JSON。这是成功的,但我不能在我的代码中的任何其他地方使用它。我的功能如下(来自Node.js doc):
function getMyFile() {
var https = require('https');
https.get('URL_I_am_targeting/file.json', (res) => {
var { statusCode } = res;
var contentType = res.headers['content-type'];
let error;
if (statusCode !== 200) {
error = new Error('Request Failed.
' +
`Status Code: ${statusCode}`);
} else if (!/^application/json/.test(contentType)) {
error = new Error('Invalid content-type.
' +
`Expected application/json but received ${contentType}`);
}
if (error) {
console.error(error.message);
// consume response data to free up memory
res.resume();
}
res.setEncoding('utf8');
let rawData = '';
res.on('data', (chunk) => {
rawData += chunk;
});
res.on('end', () => {
try {
const parsedData = JSON.parse(rawData);
console.log(parsedData);
} catch (e) {
console.error(e.message);
}
});
}).on('error', (e) => {
console.error(`Got error: ${e.message}`);
});
}
请求工作正常,因为我能够正确地在控制台中记录我的.json。但我的问题是我不能在我的代码中的任何其他地方使用常量“parsedData”。我试着写我的
return parsedData;
在我的函数中的几个地方,但当我在我的代码中使用该函数并尝试f。即
var fileContent = getMyFile();
console.log(fileContent);
fileContent未定义。这就像parsedData不能超出请求。没有记录错误,请求很好,但我不能使用它的内容。
我不是javascript专业人员,这可能是我从这个请求中返回值时出错了。
如果有人知道我错在哪里以及可以做些什么,我们将不胜感激!谢谢 !
答案
你可以为你的函数编写一个基于promise的包装器:
function getMyFile() {
var https = require('https');
return new Promise((resolve, reject) => {
https.get('URL_I_am_targeting/file.json', (res) => {
var { statusCode } = res;
var contentType = res.headers['content-type'];
let error;
if (statusCode !== 200) {
error = new Error('Request Failed.
' +
`Status Code: ${statusCode}`);
} else if (!/^application/json/.test(contentType)) {
error = new Error('Invalid content-type.
' +
`Expected application/json but received ${contentType}`);
}
if (error) {
console.error(error.message);
// consume response data to free up memory
res.resume();
}
res.setEncoding('utf8');
let rawData = '';
res.on('data', (chunk) => {
rawData += chunk;
});
res.on('end', () => {
try {
const parsedData = JSON.parse(rawData);
resolve(parsedData);
} catch (e) {
reject(e.message);
}
});
}).on('error', (e) => {
reject(`Got error: ${e.message}`);
});
});
}
另一答案
function getMyFile() {
return new Promise((resolve,reject)=>{
//your logic and data manipulations here and finally resolve the variable
resolve(parsedData)
})
}
以上是关于使用HTTPS GET请求的结果[Node.js] [重复]的主要内容,如果未能解决你的问题,请参考以下文章
Node.js使用https请求时,出现“SSL23_GET_SERVER_HELLO”错误
Node.js 无法使用 Promise、Mongoose 和 GET 请求推送到全局数组