List<String> 接口传递方法

复制代码
后端

@PostMapping("/common/upload/updateTaskFile")
public void deleteFile(@RequestBody List<String> filePath) {
    for (String deleteFilePath : filePath) {
        System.out.println(deleteFilePath);
    }

}

前端

js

export function deleteFile(filePath) {

return request({

url: '/common/upload/updateTaskFile',

method: 'post',

data: filePath

})

}

// 删除附件

var deleteFilePaths = this.deleteFilePath

deleteFile(deleteFilePaths);

参数

deleteFilePath: [],

相关推荐
XuanRanDev3 小时前
【数据结构】树的基本:结点、度、高度与计算
数据结构
苦 涩7 小时前
考研408笔记之数据结构(七)——排序
数据结构
Victoria.a8 小时前
顺序表和链表(详解)
数据结构·链表
笔耕不辍cj9 小时前
两两交换链表中的节点
数据结构·windows·链表
csj5010 小时前
数据结构基础之《(16)—链表题目》
数据结构
謓泽10 小时前
【数据结构】二分查找
数据结构·算法
HappyAcmen10 小时前
Java中List集合的面试试题及答案解析
java·面试·list
攻城狮7号11 小时前
【10.2】队列-设计循环队列
数据结构·c++·算法
写代码超菜的12 小时前
数据结构(四) B树/跳表
数据结构
小小志爱学习12 小时前
提升 Go 开发效率的利器:calc_util 工具库
数据结构·算法·golang