前台vue 往后台传参时 传递是一个字符串数组,后台如何接受
前台参数写法是固定的:

var idslist = [];
idslist.push("1");
idslist.push("2");
del(idslist).then(()=>{
})

因为vue axios中要指定Content-Type
如果Content-Type: application/x-www-form-urlencoded; charset=UTF-8是这个类型的话:

@RequestParam(value = "ids[]") String... ids

后台这么写就可以。

如果是Content-Type= 'application/json;charset=utf-8'这个类型的话:

 @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable String[] ids)

可以把字符串数组拼接到地址后面 用@PathVariable 读取到。

希望能帮到大家。

Logo

前往低代码交流专区

更多推荐