0
点赞
收藏
分享

微信扫一扫

axios is not defined

进击的包籽 2022-05-02 阅读 65

出现错误axios is not defined

错误原因axios拼写错误,对自己真无语啊
正确写法:

// axios 在线地址
 <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.27.2/axios.min.js"></script>
<script>
    document.querySelector(".get").onclick = function () {
        axios.get("https://autumnfish.cn/api/joke/list?num=3")
            .then(function (response) {
                console.log(response);
            }, function (err) {
                console.log(err);
            })
    }
</script>

在这里插入图片描述

举报

相关推荐

0 条评论