我在我的项目中使用Vue.Js和Vue Resource。我需要使用后请求从服务器获取一些信息。所以我写了这个函数:
calculate:function(){
this.$http.post("/peopleAbove",{params:{facId:1,pr:1,bl:100 }}).then(resp=>console.log(resp))
}
但是当我执行它时,什么也没发生。我检查了服务器日志,发现了这一点:
2019-07-17 13:36:48.898 WARN 9796 --- [nio-9000-exec-4] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required int parameter 'facId' is not present]
因此,我提出了一个请求,但没有参数。如何解决?