我正在尝试在我的 React JS 学校项目中使用来自https://github.com/BlakeStevenson/populartimes.js的网络爬虫。
我不断收到一条错误消息:../node_modules/populartimes.js/node_modules/puppeteer/lib/WebSocketTransport.js Module not found: Can't resolve 'ws' in ...
我做了一些研究,我认为这是 puppeteer 如何与 React JS 交互的问题。无论如何我可以解决这个问题吗?
这是我正在使用的与刮板相关的所有代码:
import React, { Component } from 'react';
import { Map, GoogleApiWrapper, InfoWindow, Marker } from 'google-maps-react';
let temp;
const populartimes = require('populartimes.js');
populartimes('ChIJKznozuF0hlQRbfbe7fJJ1rM').then(out => {temp=out.now.percent});
我已经安装了 websocket 和 puppeteer。
阿波罗的战车
相关分类