1 Star 0 Fork 0

Mr.武~/node-pc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get-news.js 993 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mr.武~ 提交于 2023-11-09 07:51 . del
const http = require('http')
const cheerio = require('cheerio')
const fs = require('fs');
const baseUrl = 'http://www.jmcbm.com/'
let req = http.request(baseUrl, res => {
// 异步的响应
// console.log(res)
let chunks = []
// 存储链接
let links = []
const fileNames = []
// 监听data事件,获取传递过来的数据片段
res.on('data', chunk => {
chunks.push(chunk)
})
// 监听end事件,获取数据完毕时触发
res.on('end', () => {
let htmlStr = Buffer.concat(chunks).toString('utf-8')
let $ = cheerio.load(htmlStr, {
decodeEntities: false
})
$('body table tr td a').each((index, item) => {
if ($(item).attr('href').includes('.asp')) {
let fileName = $(item).attr('href').split('.asp')[0]
if (!fileNames.includes(fileName)) {
fileNames.push(fileName)
}
links.push($(item).attr('href'))
}
})
fs.writeFileSync('1.text', fileNames.join('\n'))
})
})
req.end()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuyang0208/node-pc.git
[email protected]:wuyang0208/node-pc.git
wuyang0208
node-pc
node-pc
master

搜索帮助