错误:评估失败:ReferenceError:util 未定义 [英] Error: Evaluation Failed: ReferenceError: util is not defined

查看:210
本文介绍了错误:评估失败:ReferenceError:util 未定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将 util 模块对象传递给 puppeteer page.evaluate,但没有成功.我知道这个问题是在 How to pass required module反对 puppeteer page.evaluate 但提供的解决方案在我的情况下不起作用.MWE:

I am trying to pass the util module object to puppeteer page.evaluate with no success. I understand this question was asked in How to pass required module object to puppeteer page.evaluate but the solution provided does not work in my case. MWE:

const puppeteer = require("puppeteer");

const path = "http://books.toscrape.com/";

// scrape funs 
(async () =>{
    const browser = await puppeteer.launch({headless: false});
    const page = await browser.newPage();
    await page.goto(path, {waitUntil: "networkidle2", timeout: 0});
    await page.waitFor(1000);
    await page.addScriptTag({path: './node_modules/util/util.js'});
    // selector with replaceable element
    const buttonText = await page.evaluate(() => {
        let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
        let buttons = [];
        for(let i = 1; i < 21; i ++){
            let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
            buttons.push(textOut);
        };
        return buttons;  
    });

// return
await browse.close();
console.log(buttonText);
})();

显示错误:

UnhandledPromiseRejectionWarning:未处理的承诺拒绝(拒绝ID:1):错误:评估失败:ReferenceError:util未定义

UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Evaluation failed: ReferenceError: util is not defined

谢谢

在初始行中添加 const util = require("util"); 并且不起作用,如 如何将所需的模块对象传递给 puppeteer page.evaluate.

Adding const util = require("util"); in the initial lines and doesn't work as shown in How to pass required module object to puppeteer page.evaluate.

即使我使用 browserify,我似乎也无法将 util 模块注入 puppeteer 页面.步骤:

Even when I use browserify I can't seem to inject the utilmodule into the puppeteer page. Steps:

在项目PATH上,创建main.js如下:var util = require('util');

然后在终端中的 PATH 上:browserify main.js -o bundle.js.文件 bundle.js 出现在项目 PATH 中.

Then on PATH in terminal: browserify main.js -o bundle.js. A file bundle.js appears in the project PATH.

然后运行以下命令:

const puppeteer = require("puppeteer");
const path = "http://books.toscrape.com/";

// scrape funs 
(async () =>{
    const browser = await puppeteer.launch({headless: false});
    const page = await browser.newPage();
    await page.goto(path, {waitUntil: "networkidle2", timeout: 0});
    await page.waitFor(1000);
    await page.addScriptTag({path: "main.js"});
    await page.addScriptTag({path: "bundle.js"});
    // selector with replaceable element
    const buttonText = await page.evaluate(() => {
        let buttons = [];
        let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
        for(let i = 1; i < 21; i ++){
            let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
            buttons.push(textOut);
        };
        return buttons;  
    });

// return
await browse.close();
console.log(buttonText);
})();

错误:

UnhandledPromiseRejectionWarning:未处理的承诺拒绝(拒绝ID:1):错误:评估失败:类型错误:无法读取未定义的属性格式"于:5:55

UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Evaluation failed: TypeError: Cannot read property 'format' of undefined at :5:55

推荐答案

您需要包含一个与浏览器兼容的 ./node_modules/util/util.js 版本.您可以使用 browserify 或使用他们的在线服务 Browserify Wizard - util 下载浏览器版本.

You need to include a browser compatible build of ./node_modules/util/util.js. You can use browserify to do that or use their online service Browserify Wizard - util to download the browserified version.

https://try-puppeteer.appspot.com/

const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto("http://books.toscrape.com/", {waitUntil: "networkidle2", timeout: 0});
await page.waitFor(1000);

//Copy of https://wzrd.in/standalone/util@latest
await page.addScriptTag({url: "https://cdn.rawgit.com/brahma-dev/099d0d6d43a5d013603bcd245ee7a862/raw/b0c6bb82905b5b868c287392000dc2487c41994d/util.js"});

// selector with replaceable element
const buttonText = await page.evaluate(() => {
    let buttons = [];
    let selectorButton = "#default > div > div > div > div > section > div:nth-child(2) > ol > li:nth-child(%s) > article > div.product_price > form > button";
    for(let i = 1; i < 21; i ++){
        let textOut = document.querySelector(util.format(selectorButton, i)).innerText;
        buttons.push(textOut);
    };
    return buttons;  
});

// return
await browser.close();
console.log(buttonText);

这篇关于错误:评估失败:ReferenceError:util 未定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆