我已经为Google Serp安装了此脚本
npm i google-serp
可以在这里找到 google-serp
当我尝试在foreach循环中运行googleSerp函数时,总是收到消息
{ type: 'error', payload: 'Nothing responds to "javascript"' }
Foreach循环
const googleSerp = require("google-serp")
const keys = ['Abba', 'Deep purple', 'Led Zeppelin'];
keys.forEach(function(key) {
googleSerp({
query: key,
scrapeHundredFlag: true
}).then(console.log);
});
为什么会这样,是否可以解决?我知道Nightmare.js有点问题,但我不知道为什么。谢谢。