1

我正在尝试自动获取许多不同页面的分数。但是 api 似乎并没有像网页版那样提供总分。

我试过使用 Lighthouse API v5 和 v4,似乎都没有得分,我可能错过了。我通过在 pagespeed 洞察网站上使用 puppeteer 让它工作,但它已经停止工作,并且想检查我没有错过任何东西,然后再尝试再次修复它

4

2 回答 2

3

返回的 JSON 在lighthouseResult名为的部分下有一个部分categories

categories会看到performance里面score有一个孩子,得分为 1 分(所以 89 的分数是 0.89)。

"lighthouseResult": {
......
    "categories": {
        "performance": {
            "id": "performance",
            "title": "Performance",
            "score": 1.00, <- here is the score.
            "auditRefs":
......
于 2019-10-31T23:37:58.793 回答
0

您的设置一定有问题。尝试通过铬运行它,以下对我来说很好:

安装铬和灯塔:

sudo install --y chromium-browser
sudo npm install -g lighthouse
lighthouse --output-path=./Production-lighthouse-report.html URL

通过无头 chrome 在所需 URL 上运行 Lighthouse 测试的脚本:

lighthouse --chrome-flags="--headless" --output-path=./Production-lighthouse-report.html URL
于 2019-10-31T20:02:37.213 回答