diff --git a/lib/routes/smzdm/haowen.js b/lib/routes/smzdm/haowen.js index 0b8aacb83..e60d0a440 100644 --- a/lib/routes/smzdm/haowen.js +++ b/lib/routes/smzdm/haowen.js @@ -41,7 +41,10 @@ module.exports = async (ctx) => { const response = await got.get(itemUrl); const $ = cheerio.load(response.data); - const description = $('article > div').html(); + const content = $('#articleId'); + content.find('.item-name').remove(); + content.find('.recommend-tab').remove(); + const description = content.html(); const single = { title: title,