Skip to content
Prev Previous commit
Next Next commit
更新努努书坊[书].js
  • Loading branch information
EylinSir committed Jan 16, 2026
commit ba268e539b089c8a0a29210f55c92b78c5be88e6
13 changes: 3 additions & 10 deletions spider/js/去读书[书].js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ var rule = {
filterable: 0,
timeout: 10000,
play_parse: true,
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36'
},
headers: { 'User-Agent': 'MOBILE_UA' },

一级: async function () {
let {input, pdfa, pdfh, pd} = this;
Expand Down Expand Up @@ -56,16 +54,11 @@ var rule = {
let html = await request(input);
let VOD = {
vod_name: pdfh(html, '[property="og:novel:book_name"]&&content') || '',
type_name: '',
vod_pic: pd(html, '.divbox.cf img&&src') || '',
vod_content: pdfh(html, '.tabcontent .tabvalue:eq(0)&&Text') || '',
vod_remarks: pdfh(html, 'h3 a&&Text') || '',
vod_year: '',
vod_area: '',
vod_actor: pdfh(html, '[property="og:novel:author"]&&content') || '',
vod_director: '',
vod_play_from: '去读书网',
vod_play_url: ''
vod_play_from: '去读书网'
};
VOD.vod_director = VOD.vod_actor; // 复用作者信息
let tocUrl = pd(html, 'a:contains(点击阅读)&&href') || '';
Expand Down Expand Up @@ -106,7 +99,7 @@ var rule = {
}
return setResult(d);
},
// 懒加载解析(章节内容)

lazy: async function () {
let {input, pdfh} = this;
let html = await request(input);
Expand Down