UNPKG

rsshub

Version:
47 lines (39 loc) 1.38 kB
const got = require('@/utils/got'); const cheerio = require('cheerio'); const iconv = require('iconv-lite'); module.exports = async (ctx) => { const dirname = 'http://www.sctu.edu.cn/jwc/'; const response = await got({ method: 'get', url: `${dirname}list.asp?type=12&fl=${+ctx.params.type === 14 ? 14 : 13}`, responseType: 'buffer', headers: { Referer: 'http://www.sctu.edu.cn', }, }); const formal = (buffer) => { // HTML-buffer转为gb2312 const data = iconv.decode(buffer, 'gb2312'); return cheerio.load(data); }; const $ = formal(response.data); const list = $('#list1 ul li').slice(0, 10); ctx.state.data = { title: '四川旅游学院', link: 'http://www.sctu.edu.cn', description: $('meta[name="description"]').attr('content'), item: list && list .map((index, item) => { item = $(item); return { title: $(item.find('a')).text(), pubDate: $(item.find('dl')).text(), description: `发布日期:${$(item.find('dl')).text()}`, link: dirname + $(item.find('a')).attr('href'), }; }) .get(), }; };