·axios.get(url[, config])
·axios.post(url[, data[, config]])
·axios.delete(url[, config])
·axios.put(url[, data[, config]])
<!DOCTYPE html> <html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <title>Document</title> <script src=“https://unpkg.com/axios/dist/axios.min.js“></script> <script> // get 请求,必须写then,后续要调用 // axios.get(“http://localhost:3000/users?id=2“) // .then(function (res) { // console.log(res.data) // }) // axios.get(“http://localhost:3000/users",{ // params: { // id: 3 // } // }) // .then(function (res) { // console.log(res.data) // }) // post 请求 ,添加数据,可以不写then,只是添加数据 axios.post(“http://localhost:3000/users“,{ “name”: “nancy”, “age”: 19, “class”: 2 }) .then(function (res) { console.log(res.data) }) </script> </head> <body> </body> </html>