41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
|
|
module.exports = async (ctx) => {
|
|
const id = ctx.params.id;
|
|
const link = `http://projects.thepaper.cn/thepaper-cases/839studio/?cat=${id}`;
|
|
|
|
// 发起 HTTP GET 请求
|
|
const response = await got({
|
|
method: 'get',
|
|
url: link,
|
|
});
|
|
|
|
const data = response.data;
|
|
|
|
// 使用 cheerio 加载返回的 HTML
|
|
const $ = cheerio.load(data);
|
|
const list = $('div[class=imgtext]');
|
|
|
|
const category = $('div[class=lefth]').find('h1').text();
|
|
const desc = $('div[class=leftc]').find('p').text();
|
|
|
|
ctx.state.data = {
|
|
title: `澎湃美数课作品集-${category}`,
|
|
link,
|
|
description: desc,
|
|
item:
|
|
list &&
|
|
list
|
|
.map((index, item) => {
|
|
item = $(item);
|
|
return {
|
|
title: item.find('.archive_up a').first().text(),
|
|
description: `描述:${item.find('.imgdown p').text()}`,
|
|
link: item.find('.archive_up a').attr('href'),
|
|
};
|
|
})
|
|
.get(),
|
|
};
|
|
};
|