gpt4 book ai didi

javascript - 如何读取 Node 中发出的简单http请求的响应

转载 作者:行者123 更新时间:2023-12-03 10:47:36 25 4
gpt4 key购买 nike

我正在使用 Node 中的request模块来发出http请求。如何读取该请求的响应内容,以便我可以根据响应做出编程决策?

gulp.task("run-server-tests", function(){

var responseJson = request("http://myurl/run-server-tests")

plugins.util.log(responseJson); // not sure how to get at the response json

});

最佳答案

请求允许使用回调函数,参见more detail

request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML for the Google homepage.
}
})

关于javascript - 如何读取 Node 中发出的简单http请求的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28516033/

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