How would one pass multiple arguments into Q ninvoke?
如何将多个参数传递给Q ninvoke?
For example:
exports.getBalance = function () {
return Q.ninvoke(library, 'method', **[Arguments]**);
}
At the moment I have
目前我有
return Q.ninvoke(library, 'method', '*', 6);
Where arguments is an array or list of arguments?
参数是数组还是参数列表?
I'd like to reuse my ninvoke call, but sometimes methods take one or more parameters.
我想重用我的ninvoke调用,但有时候方法需要一个或多个参数。
Thanks.
Richard.
1 个解决方案
#1
2
You can use .nfpost
which works like ninvoke
only with an arguments array instead of variable arguments:
你可以使用.nfpost,它只能像ninvoke一样使用参数数组而不是变量参数:
Q.ninvoke(library, 'method', myArgumentsArray);
You can read more about it here.
你可以在这里读更多关于它的内容。
#1
2
You can use .nfpost
which works like ninvoke
only with an arguments array instead of variable arguments:
你可以使用.nfpost,它只能像ninvoke一样使用参数数组而不是变量参数:
Q.ninvoke(library, 'method', myArgumentsArray);
You can read more about it here.
你可以在这里读更多关于它的内容。