data() {
return {
searchTag:'',
test:{
uuid:'7b7ecc47d5af40c8a72f0532c60a94e0',
type:'1',
}
}
},
methods: {
queryTspMainByType()
{
uRequestJson({
url:'tSpMain/queryTspMainByType',
data:this.test,
method:'POST',
success:(res)=>{
console.log("res",res)
},
})
}
},
这是接口
@RequestMapping("/queryTspMainByType")
public R queryTspMainByType(@RequestBody ParamMap map) {
return mainService.queryTspMainByType(map.getInt("type"), map.getStr("uuid"));
}
然后后台报空指针异常 uniapp 没办法直接 new FormData,我从网上查询的说是要改 header,但是还是不行。
1
zachlhb 2020-06-05 11:18:41 +08:00 via Android
改 header 的 contentType 为 application/x-www-form-urlencoded
|
3
FieldFarmer 2020-06-05 17:47:16 +08:00
把 this.test 转一下 json 格式也是可以的
|
4
FieldFarmer 2020-06-05 17:50:56 +08:00
#3 然后 map 改成用对象接收
|