add 移动多文件

This commit is contained in:
2023-08-07 22:05:55 +08:00
parent 4bc2504a44
commit b675e3033d
5 changed files with 59 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
const axios = require("axios")
const cheerio = require("cheerio"); // HTML页面解析
async function search(name) {
async function serach(name) {
const list = await axios.get(`https://movie.douban.com/j/subject_suggest?q=${name}`, {
proxy: false,
})
@@ -212,6 +212,6 @@ async function gen_douban(sid) {
}
module.exports = {
serach: search,
serach,
gen_douban
}