gpt4 book ai didi

javascript - NodeJS...将 JSON 保存到变量

转载 作者:行者123 更新时间:2023-11-29 16:59:20 25 4
gpt4 key购买 nike

我是 NodeJS 的新手,但我环顾四周,似乎无法在下面找到解决我的问题的方法。我敢肯定这很简单,但在此先感谢您能给我的所有帮助!

我正在尝试通过 NodeJS 制作一个简单的 JSON 抓取工具。我所需要的只是将 JSON 存储到一个变量中。问题是,我正在使用 Require,他们的示例只是将其记录到控制台。我尝试在它登录到控制台后添加一个变量,但我只是变得不确定。下面是我的代码,到目前为止它非常简单:)

//  var jsonVariable; Doesn't work, shown as a test
function getJSON(url){
var request = require("request")

request({
url: url,
json: true
}, function (error, response, body) {

if (!error && response.statusCode === 200) {
console.log(body) // Print the json response
//return body; This doesn't work, nor does making a global variable called json and assigning it here. Any ideas?
//jsonVariable = body; // This also doesn't work, returning undefined even after I've called the function with valid JSON
}
})
}

再次感谢您能给我的任何帮助:)

最佳答案

问题在于 request 方法是异步的,但您正试图同步返回结果。您需要发出一个同步请求(这对于您正在使用的 request 包似乎是不可能的),或者传递一个回调函数,以便在请求成功响应时调用.例如:

var request = require("request")

function getJSON(url, callback) {
request({
url: url,
json: true
}, function (error, response, body) {
if (!error && response.statusCode === 200) {
callback(body);
}
});
}

getJSON('http://example.com/foo.json', function (body) {
console.log('we have the body!', body);
});

关于javascript - NodeJS...将 JSON 保存到变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29594731/

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