RSSHub/lib/v2/yyets/today.js

38 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const got = require('@/utils/got');
const cheerio = require('cheerio');
module.exports = async (ctx) => {
// 发起 HTTP GET 请求
const response = await got({
method: 'get',
url: 'https://yysub.net',
});
const data = response.data; // response.data 为 HTTP GET 请求返回的 HTML也就是简书首页的所有 HTML
const $ = cheerio.load(data); // 使用 cheerio 加载返回的 HTML
const list = $('.today-list-wrap').find('ul').find('li');
// 使用 cheerio 选择器,选择带有 data-item_id 属性的所有 div 元素,返回 cheerio node 对象数组
// 注:每一个 cheerio node 对应一个 HTML DOM
// 注cheerio 选择器与 jquery 选择器几乎相同
// 参考 cheerio 文档https://cheerio.js.org/
ctx.state.data = {
title: '人人影视-今日播出',
link: 'https://yysub.net',
item:
list &&
list
.map((index, item) => {
item = $(item);
return {
title: item.find('a').first().text(),
link: item.find('a').attr('href'),
guid: item.find('a').first().text(),
};
})
.get(),
};
};