[ajaxupload] - 上传文件同时附件参数值

  $.ajax({
url: '/excel/importExcel?instance='+"品种1",
type: 'POST',
data: formData,

上面前端通过?拼接参数.

后台接受如下:

 public Integer importExcel(@RequestParam(value = "uploadFile") MultipartFile uploadFile,
@RequestParam(value="instance")String instance,Model model){
System.out.println("instance"+instance);
上一篇:Android从启动到程序运行整个过程的整理


下一篇:SQL SERVER 常用知识整理