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: [],

相关推荐
守正出琦15 分钟前
日期类的实现
数据结构·c++·算法
ゞ 正在缓冲99%…1 小时前
leetcode75.颜色分类
java·数据结构·算法·排序
爱爬山的老虎2 小时前
【面试经典150题】LeetCode121·买卖股票最佳时机
数据结构·算法·leetcode·面试·职场和发展
SweetCode3 小时前
裴蜀定理:整数解的奥秘
数据结构·python·线性代数·算法·机器学习
惊鸿.Jh3 小时前
【滑动窗口】3254. 长度为 K 的子数组的能量值 I
数据结构·算法·leetcode
爱喝热水的呀哈喽4 小时前
Java 集合 Map Stream流
数据结构
Dovis(誓平步青云)4 小时前
【数据结构】排序算法(中篇)·处理大数据的精妙
c语言·数据结构·算法·排序算法·学习方法
Touper.5 小时前
L2-003 月饼
数据结构·算法·排序算法
不知名。。。。。。。。16 小时前
C++__list
开发语言·c++·list
SsummerC16 小时前
【leetcode100】每日温度
数据结构·python·leetcode