一个可扩展的通用型小说下载器。
使用如下自定义保存参数即可:
const saveOptions = {
getchapterName: (chapter) => {
if (chapter.chapterName) {
if (chapter.sectionName) {
return `${chapter.sectionName} ${chapter.chapterName}`;
} else {
return `${chapter.chapterName}`;
}
} else {
if (chapter.sectionName) {
return `${chapter.sectionName} ${chapter.chapterNumber.toString()}`;
} else {
return `${chapter.chapterNumber.toString()}`;
}
}
}
}
有关自定义保存参数,可参考README
成功,谢谢大佬
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
请问wenku8能不能让下载下来的每个章节名都带上卷名