文章目录
目前使用axios实现vue中与后台数据交互,目前GET,DELETE都是正常使用,但是会有跨域的问题,我就是临时在返回头加上了Access-Control-Allow-Origin:”*”
但是一直由于POST提交数据后台数据一直获取不到RequestBody,我之前使用postman测试都是可以通过的,显示status failure后台也根本不报错,因为获取不到
开始是以为是我格式问题换了几种数据
1 | axios.post('http://localhost:8080/xxx/model/' + path, modelIds).then(response = > {this.searchContent() |
还有就是PUT提交时 application/x-www-form-urlencoded,后台用RequestParam,或者不写都可以接受,对象的话要set,get方法,我刚开始用的form-data,SpringBoot是获取不到数据的
我目前用的是nginx,代理