Vue 的 post请求 和 Get 请求 方式

项目中post请求,get请求,传参方式是不一样的。

get 请求:

                this.$http.get('/rail/findet',{
                    params:{
                        truckCode:this.fencevin,
                    },
                }).then((res) => {
                    console.log(res);
                })

Post 请求:

                this.$http.post('/rail/save',{
                    truckCode:this.fencevins,
                }).then((res) => {
                    console.log(res);

                })

猜你喜欢

转载自blog.csdn.net/Xl4277/article/details/107458248