码迷,mamicode.com
首页 > 其他好文 > 详细

axiso 的使用

时间:2019-12-13 23:35:04      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:code   传递参数   iso   The   ack   list   cat   ram   vue   

Vue官方推荐的ajax请求框架叫做:axios

axios的Get请求语法:

axios.get("/item/category/list?pid=0") // 请求路径和请求参数拼接
    .then(function(resp){
    	// 成功回调函数
     })
    .catch(function(){
    	// 失败回调函数
     })

// 参数较多时,可以通过params来传递参数 axios.get("/item/category/list", { params:{ pid:0 } }) .then(function(resp){})// 成功时的回调 .catch(function(error){})// 失败时的回调

 

axios的POST请求语法:

axios.post("/user",{
        name:"Jack",
        age:21
    })
    .then(function(resp){
    
    })
    .catch(function(error){
    
    })

注意,POST请求传参,不需要像GET请求那样定义一个对象,在对象的params参数中传参。post()方法的第二个参数对象,就是将来要传递的参数

 

axiso 的使用

标签:code   传递参数   iso   The   ack   list   cat   ram   vue   

原文地址:https://www.cnblogs.com/houchen/p/12037588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!