两种传参方式是不同的

get:

	getInfo(){
					console.log(this.page)
					this.$http.get('http://localhost:8080/resourceController/requestResourceListData',{params:{page:this.page,rows:this.rows}},{
                            emulateJSON:true
                        }).then(result =>{
						console.log(result.body.rows)
						this.list=result.body.rows
					})
				}

 

post:

				getInfo(){
					console.log(this.page)
					this.$http.post('http://localhost:8080/resourceController/requestResourceListData',{page:this.page,rows:this.rows},{
                            emulateJSON:true
                        }).then(result =>{
						console.log(result.body.rows)
						this.list=result.body.rows
					})
				}

 

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐