我正在尝试使用wrapAsync从 Node 包中包装一个函数。
filepicker = new Filepicker('API Key')
filepickerStatSync = Meteor.wrapAsync(filepicker.stat, filepicker)
result = filepickerStatSync(url);
console.log('after')
统计功能如下。
一切似乎都正常运行...据我所知,请求调用以正确的结果响应,调用了最终的回调,整个过程同步执行/正确地产生了结果...但是同步调用永远不会返回,并且console.log ('after')永远不会被击中。
我不认为我犯了与question中相同的错误,因为我的函数将回调作为最后一个参数。
我也认为解决方案不在question中,因为包装函数的确以错误和结果调用回调而结束,这应该是Meteor.wrapAsync在签名中寻找的东西。
Filepicker.prototype.stat = function(url, options, callback) {
callback = callback || function(){};
if(!options) {
options = {};
}
if(!url) {
callback(new Error('Error: no url given'));
return;
}
request({
method: 'GET',
url: url+'/metadata?',
form: {
size: options.size || true,
mimetype: options.mimetype || true,
filename: options.filename || true,
width: options.width || true,
height: options.height || true,
writeable: options.writeable || true,
md5: options.md5 || true,
path: options.path || true,
container: options.container || true,
security: options.security || {}
}
}, function(err, res, body) {
console.log('err = '+err);
console.log('res = '+res);
console.log('body = '+body);
if(err) {
callback(err);
return;
}
var returnJson;
if(typeof(body)==='string'){
try {
returnJson = JSON.parse(body);
} catch(e) {
callback(new Error('Unknown response'), null, body);
return;
}
} else {
console.log('returnJSON');
returnJson = body;
}
console.log('callbacked');
callback(null, returnJson);
});
};
最佳答案
您要包装的函数需要三个参数,但您仅提供两个参数:url
和(隐式)回调函数(我将其称为cb
)。因此在内部,将执行的是Filepicker.prototype.stat(url, cb)
,即,回调函数cb
将被解释为options
而不是callback
,并且callback
将设置为空函数。因此,永远不会调用wrapAsync的回调,因为回调链已损坏。
这应该工作:
result = filepickerStatSync(url, {});