NextJS / vercel - 504 错误“FUNCTION_INVOCATION_TIMEOUT”

IT技术 javascript reactjs next.js vercel
2021-05-07 00:02:54

部署到 vercel 后在我的一个页面上出现此错误,在开发模式下一切正常。

我认为问题可能是我的提取/API 之一,因为它使用来自第一个提取请求的数据作为第二个提取请求的 URL...

我所有具有不同 API/获取请求的其他页面都可以正常工作...

export const fetchData = async (page) => {
  try {
    const req = await fetch(
      "https://www.productpage.com/new/" +
        page
    );
    const html = await req.text();
    const $ = cheerio.load(html);

    let newProducts = [];

    for (let i = 1; i < 25; i++) {
      let name = $(`#product_listing > tbody > #_${i} > td:nth-child(2) > a`)
        .text()
        .replace(/\n/g, "");
      let pageSrc = $(
        `#product_listing > tbody > #_${i} > td:nth-child(2) > a`
      ).attr("href");
      const price = $(`#product_listing > tbody >#_${i} > td.price.notranslate`)
        .text()
        .replace(/\n/g, "");

      pageSrc = "https://www.productpage.com" + pageSrc;

      const req2 = await fetch(pageSrc); // here it is using data from first fetch for a 2nd request..
      const html2 = await req2.text();
      const $2 = cheerio.load(html2);

      const imageSrc = $2(
        "#product-main-image .main-image-inner:first-child img"
      ).attr("src");
      const name2 = $2("#product-details dd:nth-child(2)")
        .text()
        .replace(/\n/g, "");
      const brand = $2("#product-details dd:nth-child(4)")
        .text()
        .replace(/\n/g, "");

      newProducts.push({
        name: name,
        name2: name2,
        brand: brand,
        pageSrc: pageSrc,
        price: price,
        imageSrc: imageSrc,
      });
    }

    return newProducts;
  } catch (err) {}
};

module.exports = {
  fetchData,
};
1个回答

此错误表明 API 响应的响应时间过长

将 Vercel 与Hobby计划一起使用时,您的无服务器 API 路由只能处理 5 秒这意味着 5 秒后,路由响应504 GATEWAY TIMEOUT错误。

这些相同的限制在本地运行时不适用next dev

要解决此问题,您需要减少 API 路由响应所需的时间,或升级您的 Vercel 计划。