fetch("https://weibo-top-api-pi.vercel.app/api")
.then((data) => data.json())
.then((data) => {
let html =
"";
html += '
';
let hotness = {
爆: "weibo-boom",
热: "weibo-hot",
沸: "weibo-boil",
新: "weibo-new",
荐: "weibo-recommend",
音: "weibo-jyzy",
影: "weibo-jyzy",
剧: "weibo-jyzy",
综: "weibo-jyzy",
};
for (let item of data) {
html +=
'
";
}
html += "
";
document.getElementById("weibo-container").innerHTML = html;
})
.catch(function (error) {
console.log(error);
});