fileinput|fileinput excel 文件上传 导出

name="excelFile" 这是和后台商定的,name="filePath" 很重要 否则会出现参数400 js部分 // 批量导入 var token = ""; if (sessionStorage.token) { var token = sessionStorage.token; }; $scope.data=https://www.it610.com/article/{}; $('.imgFileMul').fileinput({ language: 'zh', //设置语言 allowedFileExtensions: ["xls", "xlsx"], //接收的文件后缀 showClose:false,//是否显示关闭按钮 uploadUrl:$rootScope.baseUrl+'laborage/importExcel', showRemove:true, maxFileCount: 1, showCaption: true, showBrowse: true, showPreview: false, maxFileSize:0, //单位为KB,如果为0表示不限制文件大小 dropZoneEnabled:false, showUpload: true, //是否显示上传按钮 enctype: 'multipart/form-data', validateInitialCount:false, previewFileIcon: "", overwriteInitial:false,//预设图片 不会被覆盖 ajaxSettings:{ "headers" : {'token' : token} }, previewFileIconSettings: { 'docx': '', 'xlsx': '', 'pptx': '', 'jpg': '', 'pdf': '', 'zip': '', }, }).on("fileuploaded", function (event, data, previewId, index){//上传成功 $scope.data.monicker = data.files[index].name; if(data.response.code == 0) { $scope.data.information = "上传成功!"; } else { $scope.data.information = "上传失败!"; } $timeout(function() { $(".info-modal").modal('show'); },1000) }); $scope.goBackFun = function() { $(".info-modal").hide(); } html 部分
// 提示框 提示信息{{data.monicker}}{{data.information}}

    推荐阅读