无法使用Require.js调用函数

2022-02-28 00:00:00 node.js javascript requirejs

我尝试为我的node.js服务器编写一个模块,它只返回我想要从url获得的对象。但不知何故,我无法返回使用我的方法获得的值。这个http.get..。是在我返回值之后执行的,所以我只是得到了"未定义的",但是为什么呢?

你能帮帮我吗?如果这是一个愚蠢的问题,我很抱歉,但我对javascript node.js和quire.js真的很陌生。

define(['http'], function(http){
    console.log('Hi ich bin pullArchiveVolume');

    var response = 1;
    console.log('Log 1: ' + response);

    http.get("http:...", function(res) {
        var body = '';

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

        res.on('end', function() {

            console.log("Log 2: " + response);
            response = 2;
            console.log("Log 3: " + response);

            response = JSON.parse(body);
            return response;
            // console.log("Log 2 :", response);
            // console.log("Got response: ", response);
        });
    }).on('error', function(e) {
      console.log("Got error: " + e.message);
    });

    console.log("Log 4: " + response);
    return response;

})

控制台输出:

Hi ich bin pullArchiveVolume
Log 1: 1
log 4: 1
log 2: 1
log 3: 2

谢谢!


解决方案

您不能让函数使异步调用只返回某些内容(除非它是promise)。

您需要让函数接受回调参数:

function foo(callback) {
  doSomethingAsync(function(data) {
    // fire callback, which is a function that takes an argument 'data'
    callback(data)
  });
}

然后您可以这样使用它:

foo(function(data) {
  doStuffWith(data);
});

相关文章