29 lines
974 B
JavaScript
29 lines
974 B
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
const link = 'http://cs.ccnu.edu.cn/xwzx/tzgg.htm';
|
|
const response = await got(link);
|
|
const $ = cheerio.load(response.data);
|
|
const list = $('.list_box_07 li');
|
|
|
|
ctx.state.data = {
|
|
title: '华中师范大学计算机学院',
|
|
link,
|
|
description: '华中师范大学计算机学院通知公告',
|
|
item:
|
|
list &&
|
|
list.toArray().map((item) => {
|
|
item = $(item);
|
|
const a = item.find('a');
|
|
return {
|
|
title: a.attr('title'),
|
|
description: item.find('.overfloat-dot-2').text(),
|
|
link: new URL(a.attr('href'), link).href,
|
|
pubDate: parseDate(item.find('.time').text(), 'DDYYYY-MM'),
|
|
};
|
|
}),
|
|
};
|
|
};
|