简体   繁体   English

Promise.all异步函数内的错误:未定义不是函数

[英]Promise.all error inside async function : undefined is not a function

in my async function i use Promise.all but for some reason its not defined or something here is the function 在我的异步函数中,我使用Promise.all但是由于某种原因,它没有定义,或者这里是函数

async function check_available_money() {


    global_browser = await puppeteer.launch({headless: false, args: ['--no-sandbox', '--disable-setuid-sandbox']});
    const page = await global_browser.newPage();
    await page.setViewport({width: 1000, height: 1100});
    var setting = {'username': 'aa', 'password': 'bb'};


    try {
        await page.goto('https://example.com/login', {timeout: 90000})
            .catch(function (error) {
                    throw new Error(' TIMEOUT 1 ');
                }
            );

        await page.$eval('#username', (el, setting) => el.value = setting.username, setting);
        await page.$eval('#password', (el, setting) => el.value = setting.password, setting);


        console.log(tab_id + ' -> SUMITING LOGIN FORM  ');
        await Promise.all(
            page.$eval('form', form => form.submit()),
            page.waitForNavigation()
        )


        console.log(tab_id + ' -> SUMITING LOGIN FORM DONE !  ');



    }
    catch (e) {

        await page.close();
        console.log(e);
    }
}

i get error from this part 我从这部分得到错误

await Promise.all(
            page.$eval('form', form => form.submit()),
            page.waitForNavigation()
        )

if i remove await Promise.all and just type 如果我删除await Promise.all并输入

            await page.$eval('form', form => form.submit());
            await page.waitForNavigation();

it works ok 可以

here is error stack 这是错误堆栈

TypeError: undefined is not a function
    at Function.all (<anonymous>)
    at check_available_money (D:\wamp\www\withdraw\robot\server.js:115:23)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)
(node:13184) UnhandledPromiseRejectionWarning: Error: Protocol error (Runtime.callFunctionOn): Target closed.
    at Promise (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\Connection.js:202:56)
    at new Promise (<anonymous>)
    at CDPSession.send (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\Connection.js:201:12)
    at ExecutionContext.evaluateHandle (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\ExecutionContext.js:79:75)
    at ExecutionContext.evaluate (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\ExecutionContext.js:46:31)
    at ElementHandle.$eval (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\ElementHandle.js:293:50)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:188:7)
(node:13184) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3)
(node:13184) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:13184) UnhandledPromiseRejectionWarning: Error: Navigation Timeout Exceeded: 30000ms exceeded
    at Promise.then (D:\wamp\www\withdraw\robot\node_modules\puppeteer\lib\NavigatorWatcher.js:73:21)
    at <anonymous>
(node:13184) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4)

Promise.all takes an iterable, not multiple arguments. Promise.all采用可迭代的参数,而不是多个参数。 It tried to iterate your first argument, but that didn't have a [Symbol.iterator] method - " undefined is not a function ". 它试图迭代您的第一个参数,但是它没有[Symbol.iterator]方法-“ 未定义不是函数 ”。 Pass an array: 传递数组:

await Promise.all([
    page.$eval('form', form => form.submit()),
    page.waitForNavigation(),
])

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM