2024-08-27 09:23:22 +08:00

15 lines
374 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<ul id="heroList"></ul>
<script>
/**
* 远程获取王者荣耀所有的英雄数据
*/
async function getHeroes() {
return fetch('https://study.duyiedu.com/api/herolist')
.then((resp) => resp.json())
.then((resp) => resp.data);
}
// 利用getHeroes方法获取所有的英雄数据将英雄名称显示到页面的列表中
</script>