refactor: rename axios to got

This commit is contained in:
DIYgod
2019-06-03 18:03:05 +08:00
parent c4bf4fcdb4
commit a56c0b5a39
629 changed files with 1552 additions and 1552 deletions

View File

@@ -1,8 +1,8 @@
const axios = require('@/utils/axios');
const got = require('@/utils/got');
const { load } = require('cheerio');
exports.getPage = async (url, ctx) => {
const { data } = await axios(url);
const { data } = await got(url);
const $ = load(data);
const pageTitle = `JavBus - ${$('head > title')
@@ -70,7 +70,7 @@ const getDetail = async (link, ctx) => {
if (cache) {
return JSON.parse(cache);
} else {
const resp = await axios(link);
const resp = await got(link);
const detailPage = resp.data;
// 演员
const actressReg = /<a class="avatar-box"[\s\S]*?<\/a>/g;