rsshub
Version:
Make RSS Great Again!
36 lines (29 loc) • 1.08 kB
JavaScript
const cheerio = require('cheerio');
const got = require('@/utils/got');
module.exports = async (ctx) => {
// 发起 HTTP GET 请求
const baseUrl = 'http://xgxy.cug.edu.cn/index/tzgg.htm';
const response = await got({
method: 'get',
url: baseUrl,
});
const data = response.data;
const $ = cheerio.load(data);
const list = $('#content > section.section.full-width-bg.gray-bg > div > div > div > ul > li');
ctx.state.data = {
title: '中国地质大学(武汉)地理与信息工程学院 - 综合通知公告',
link: baseUrl,
item:
list &&
list
.map((index, item) => {
item = $(item);
return {
title: item.find('a').text(),
link: item.find('a').attr('href'),
pubDate: new Date(item.find('span').text().replace('年', '-').replace('月', '-').replace('日', '')).toUTCString(),
};
})
.get(),
};
};