栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

批量删除的三种实现方式

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

批量删除的三种实现方式

vue+springboot实现批量删除的三种实现方式 1.Post请求方式

前端代码

//参数封装
handleSelectionChange(val){
     this.multipleSelection = val;
     this.ids = this.multipleSelection.map(item =>
         item.id
     )
   },
//Api封装
export function batchDelete(ids){
    return request({
        url: '/system/config/pos/batchDelete',
        method: 'post',
        data: ids
    })
}

后端代码

//使用@RequestBody注解
@PostMapping("/batchDelete")
    public ResultMap deletePositionByIds(@RequestBody Integer[] ids) {
        if (positionService.removeByIds(Arrays.asList(ids))) {
            return ResultMap.success("删除成功!");
        }
        return ResultMap.error("删除失败!");
    }
2.Delete请求方式一
//参数封装
let ids='';
 for(let i=0;i 

后端代码

@DeleteMapping("/batchDelete")
    public ResultMap deletePositionByIds(@RequestParam Integer[] ids) {
        if (positionService.removeByIds(Arrays.asList(ids))) {
            return ResultMap.success("删除成功!");
        }
        return ResultMap.error("删除失败!");
    }
3.Delete请求方式二

前端代码

//参数封装
let ids='';
this.multipleSelection.forEach(item =>{
        ids += 'ids=' + item.id +'&'
      })
    
//Api封装
export function batchDelete(ids){
    return request({
        url: '/system/config/pos/batchDelete'+ids,
        method: 'delete'
    })
}

后端代码

@DeleteMapping("/batchDelete")
    public ResultMap deletePositionByIds(Integer[] ids) {
        if (positionService.removeByIds(Arrays.asList(ids))) {
            return ResultMap.success("删除成功!");
        }
        return ResultMap.error("删除失败!");
    }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/759437.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号