html 使用Pokemon API的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用Pokemon API的示例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Gotta Catch'em All</title>
        <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
        <script>
            $(document).ready(function(){
                $.get("http://pokeapi.co/api/v1/pokemon/1/", function(res) {
                    var html_str = "";
                    html_str += "<h4>Types</h4>";
                    html_str += "<ul>"; 
                    for(var i = 0; i < res.types.length; i++) {
                        html_str += "<li>" + res.types[i].name + "</li>";
                    }
                    html_str += "</ul>";
                    $("#bulbasaur").html(html_str);
                }, "json");
            })
        </script>
    </head>
    <body>
        <div id="bulbasaur">
        </div>
    </body>
</html>
Copy

以上是关于html 使用Pokemon API的示例的主要内容,如果未能解决你的问题,请参考以下文章

Pokemon API 获取(axios)数据然后呈现所有数据问题

如何在 pokeAPI 中获取有关 pokemon 的详细信息

Redux,使用 useSelector 访问 API 对象内的数据

...this.props.pokemon 的目的是啥,它与 this.props.pokemon 有何不同 [重复]

改造 API 调用返回 null

Python数据分析第二篇--数据计算