Advertisement
xerocool-101

011 axios

Apr 20th, 2025
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.22 KB | Software | 0 0
  1. // 🧠 AXIOS Summary Table
  2.  
  3. Action      Method      Axios Syntax
  4. Read        GET         axios.get("/todos")
  5. Create      POST        axios.post("/todos", data)
  6. Update      PUT         axios.put("/todos/:id", data)
  7. Delete      DELETE      axios.delete("/todos/:id")
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement