diff --git a/src/controllers/games/data.js b/src/controllers/games/data.js index 2b04eb9..8e0d742 100644 --- a/src/controllers/games/data.js +++ b/src/controllers/games/data.js @@ -29,8 +29,6 @@ router.get('/report', async (req, res, next) => { const date = query.date const isNew = parseInt(query.isNew) - console.log(query) - try { const categoryRes = await axios({ url: gameReportApiUrl, @@ -45,8 +43,6 @@ router.get('/report', async (req, res, next) => { }, }) - console.log(categoryRes.data) - if (categoryRes.data.errcode === 0) { const categoryInfo = categoryRes.data.result const category = [] @@ -56,9 +52,6 @@ router.get('/report', async (req, res, next) => { } } - console.log('category', category) - console.log('categoryInfo', categoryInfo) - if (category.length === 0) { res.send({ errcode: 404, @@ -75,7 +68,6 @@ router.get('/report', async (req, res, next) => { ) }) - console.log(getDataArr) const dataArr = await Promise.all(getDataArr) const allData = Object.assign(...dataArr) @@ -109,21 +101,11 @@ router.get('/report', async (req, res, next) => { return } } catch (err) { - console.log(err) next(err) } }) function getCategoryData(cateName, date, is_new, game_id, platform_id) { - console.log( - JSON.stringify({ - gameid: game_id, - channel: platform_id, - times: date, - is_new: is_new, - category: cateName, - }) - ) return new Promise(async (resolve, reject) => { const dataRes = await axios({ url: gameReportApiUrl,