当我尝试更新排行榜中玩家的分数时。我收到了找不到播放器/更新的错误。
const linksArray = await page.$$('a');
const the2ndHref = await page.evaluate(linkList => linkList[1].href, linksArray);
console.log('the2ndHref', the2ndHref);
await linksArray.dispose();
错误:
错误更新失败:未找到方法'/ players / update'
答案 0 :(得分:0)
您是否仅在客户端或服务器端定义了您的收藏?尝试在./client或./server文件夹之外定义它,例如在lib /
中