vuejs之使用axios发送http请求

前端开发 作者: 2024-08-26 11:00:01
看一个例子: <html> <head> <script src="https://unpkg.com/axios/dist/axios.min.js"
<html>

head>
  script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</bodyinput type="button" value="get请求" class="get"="post请求"="post">
    document.querySelector(".get").onclick = function () {
      axios.get('https://autumnfish.cn/api/joke/list?num=3')
        .then(function (response) {
          console.log(response);
        })
    }
    document.querySelector(".post").onclick = function () {
      axios.post('https://autumnfish.cn/api/user/reg',{ username: "西西嘛呦" })
        .then(function (response) {
          console.log(response);
        })
    }

  >
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_68933.html