Merge pull request #151 from nujhong/hotfix/toplist-update

新增两个排行榜
This commit is contained in:
binaryify 2017-12-11 19:04:16 +08:00 committed by GitHub
commit 7a0b77ec7f
2 changed files with 92 additions and 88 deletions

View File

@ -1009,7 +1009,9 @@ $ set PORT=4000 && node app.js
"18": 中国嘻哈榜,
"19": 法国 NRJ EuroHot 30周榜,
"20": 台湾Hito排行榜,
"21": Beatport全球电子舞曲榜
"21": Beatport全球电子舞曲榜,
"22": 云音乐ACG音乐榜,
"23": 云音乐嘻哈榜
```
**接口地址:**

View File

@ -20,7 +20,9 @@ const top_list_all = {
"18": ["中国嘻哈榜", "1899724"],
"19": ["法国 NRJ EuroHot 30周榜", "27135204"],
"20": ["台湾Hito排行榜", "112463"],
"21": ["Beatport全球电子舞曲榜", "3812895"]
"21": ["Beatport全球电子舞曲榜", "3812895"],
"22": ["云音乐ACG音乐榜", "71385702"],
"23": ["云音乐嘻哈榜", "991319590"]
};
const express = require("express");
const router = express();