小白遇坑
刚开始我是用get方法来传递json数据,但是总是报错:Required request body is missing ,我人傻了,对着这个错误百度了半天,才发现,原来axios get请求方式传递给后台的参数都是字符串形式,无法传递json对象或数组对象等,犯了这么低级的错误,实在是惭愧!
axios post方式传递json数据
- 首先安装axios
npm run dev
- 在main.js中引入axios
import axios from 'axios'
Vue.prototype.$axios=axios
- 在需要传值的地方使用以下代码
this.$axios({
url:'http://localhost:8087/creatClusterAndNodes',
data:this.formdata,
method:"POST",
header:{
'Content-Type':'application/json'
}
})
.then(res=>{
console.log(res.data)
})
.catch(Error=>{
console.log(Error)
})
- 后台接收参数
@RequestMapping(value = "/creatClusterAndNodes", method = RequestMethod.POST, produces = "application/json;charset=UTF-8")
public String creatClusterAndNodes(@RequestBody JSONObject jsonParam) {
System.out.println("jsonParam:"+jsonParam);
return "okk";
}
|