vue传参字符串数组
前台vue 往后台传参时 传递是一个字符串数组,后台如何接受前台参数写法是固定的:var idslist = [];idslist.push("1");idslist.push("2");del(idslist).then(()=>{})因为vue axios中要指定Content-Type如果Content-Type: application/x-www-form-urlencoded;
·
前台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 读取到。
希望能帮到大家。
更多推荐
已为社区贡献2条内容
所有评论(0)