在下面的代码中,我希望在调用processhttprequest()
时将变量a, b, c
作为参数传递。
var q = require("q");
var request = require('request');
function myfun()
{
var a, b, c;
//do some work here
var httprequest = q.denodeify(request);
var httprequestpromise = httprequest(httpoptions);
httprequestpromise.then(processhttprequest);
}
我试过httprequestpromise.then(processhttprequest.bind([a, b, c]));
,但没有成功。这是否由Q或任何其他promise库支持。
您可以这样使用.bind()
:
httprequestpromise.then(processhttprequest.bind(null, a, b, c));
这将创建一个伪函数,在调用processhttprequest()
之前添加参数a
、b
和c
。
或者,您可以使用自己的存根函数手动完成,如下所示:
function myfun()
{
var a, b, c;
//do some work here
var httprequest = q.denodeify(request);
var httprequestpromise = httprequest(httpoptions);
httprequestpromise.then(function(result) {
return processhttprequest(a, b, c, result);
});
}
Function.prototype.bind
不接受数组。一旦您修复了bind
的使用,您的代码就应该按照您所描述的那样工作。
尝试httprequestpromise.then(processhttprequest.bind(null, a, b, c));
或
httprequestpromise.then(function(){
processhttprequest(a, b, c);
});