本文介绍了无法使用Require.js调用函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试为我的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);
});
这篇关于无法使用Require.js调用函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!