gpt4 book ai didi

javascript - 将参数传递给 Promise 序列

转载 作者:行者123 更新时间:2023-11-30 15:31:43 24 4
gpt4 key购买 nike

我正在使用 Node js 插件: https://www.npmjs.com/package/promise-sequence ,我想做的是在调用管道时将参数传递给每个函数。

var Nightmare = require('nightmare');
var pipeline = require('promise-sequence/lib/pipeline');

var commonFunctions = require('./websites/_common/commonFunctions')

var nightmare = Nightmare({
show: true,
fullscreen : true,
waitTimeout: 10000
});

var resultsPromise = pipeline([
commonFunctions.accessURL(nightmare),
commonFunctions.loginToWebsite(nightmare),
])
.then(() => commonFunctions.success(nightmare))
.catch((error) => console.log(error));

但是,当我尝试传递参数时,它给了我一个错误:

TypeError: tasks[0].apply is not a function
at C:\sad\node_modules\promise-sequence\lib\pipeline.js:25:57
at process._tickCallback (internal/process/next_tick.js:103:7)
at Module.runMain (module.js:607:11)
at run (bootstrap_node.js:418:7)
at startup (bootstrap_node.js:139:9)
at bootstrap_node.js:533:3

如何将噩梦变量作为管道中的参数传递给每个函数?

最佳答案

您可以绑定(bind)这些函数:

var resultsPromise = pipeline([
commonFunctions.accessURL.bind(null, nightmare),
commonFunctions.loginToWebsite.bind(null, nightmare),
])...

或者使用匿名函数:

var resultsPromise = pipeline([
function () { return commonFunctions.accessURL(nightmare); }),
function () { return commonFunctions.loginToWebsite(nightmare); }),
])...

如果您使用的是 ES6,您可以使用箭头函数使其更短:

var resultsPromise = pipeline([
() => commonFunctions.accessURL(nightmare),
() => commonFunctions.loginToWebsite(nightmare),
])...

这里要注意的是,管道需要传递给它的函数数组,使用这些方法,我们不断传递函数,但 commonFunctions.accessURLcommonFunctions.loginToWebsite 将使用 nightmare 变量调用。

你的代码不工作的原因,或者正如你所说的直接调用它们,是因为当你调用你的函数时,它们开始执行并返回 promise ,但是管道不期望 promise ,而是期望返回的函数 promise ,所以它会在它们开始执行时调用这些函数。 Bind 基本上创建了预加载给定参数的新函数,这就是我们在匿名函数情况下所做的。

关于javascript - 将参数传递给 Promise 序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42161346/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com