nodejs写一个获取https://ty.58.com/shangpu/53439767906604x.shtml中第三个script中定义的内容

const axios = require("axios");
const cheerio = require("cheerio");

// 构造请求头部,避免被网站屏蔽
const headers = {
  "User-Agent":
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
};

// 发送 GET 请求并获取响应数据
const url = "https://ty.58.com/shangpu/53439767906604x.shtml";
axios.get(url, { headers }).then((res) => {
  const html = res.data;

  // 解析 HTML 并提取第三个 script 的内容
  const $ = cheerio.load(html);
  const scripts = $('script:not([src])');
  let thirdScript = "";

  if (scripts.length >= 3) {
    thirdScript = $(scripts[2]).html().trim();
  }

  // 输出第三个 script 的内容
  console.log(thirdScript);
});
 

猜你喜欢

转载自blog.csdn.net/zhtxilyj/article/details/130071741
今日推荐