我正在尝试使用wrapAsync从节点包中包装函数。
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);
});
};
答案 0 :(得分:2)
你要包装的函数有三个参数,但你只提供两个:url
和(隐式)回调函数(我称之为cb
)。所以在内部,将执行的是Filepicker.prototype.stat(url, cb)
,即回调函数cb
将被解释为options
而不是callback
,而callback
将设置为空函数。因此,从不调用wrapAsync的回调,因为回调链已被破坏。
这应该有效:
result = filepickerStatSync(url, {});