gpt4 book ai didi

node.js - 在 "request"中调用模块的本地函数作为回调

转载 作者:太空宇宙 更新时间:2023-11-03 21:57:40 25 4
gpt4 key购买 nike

在我的主代码中,我执行以下操作:

var module = require('./module')

module.FooA(module.FooB);

module.js 包含以下代码:

var request = require('request'); //using of npm "request"

exports.FooB = function(data){ /*operations on data here*/ };

exports.FooA = function(callback){

var url = some_link;

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

};

问题是,显然,即使满足条件,callback(body) 也不会运行。 var result = request(url) 后跟 exports.FooB(result) 可以完成这项工作,但据我所知,显然它的行为不像回调,并且会产生麻烦。

在这种情况下定义回调函数的正确方法是什么?我是否需要,或者它实际上是同步的,但我没有注意到它?

最佳答案

使用第一个函数回调参数时出错,这是 Node.js 核心中的默认设置,并且是 google 为您的项目函数提供的信息。

像@ShanSan 推荐的那样,使用 console.logconsole.errorconsole.trace 进行调试。

示例:

var request = require('request'); //using of npm "request"

exports.FooB = function(error, data){ /*operations on data here*/ };

exports.FooA = function(callback){

var url = some_link;

request(url, function (error, response, body) {
if (error || response.statusCode != 200) {
// pass error to callback and if use return you dont need other code block bellow
console.error('Error in request', error);
return callback(error, null);
}

// here run if dont have errors

// if need more info use the console.log(request); or console.log(body);

// use error in first param in callback functions

callback(null, body);
});

};

关于node.js - 在 "request"中调用模块的本地函数作为回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36109760/

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