当我第二次单击浏览按钮上传更多文件时,先前选择的文件在HttpPostedFile之后的代码中丢失。 我正在使用最新版本的bootstrap-fileinput v5.0.2。
找到了一些与此相关的文章,但提到该问题已在最新版本中得到解决。
$('[id*=flUpload]').fileinput({
theme: 'fa',
showUpload: false,
dropZoneEnabled: false,
autoReplace: false,
overwriteInitial: false,
maxFileCount: 5,
showCaption: true,
showRemove: true,
showUpload: false,
uploadUrl: '../Uploads/',
showPreview: true,
autoOrientImage: false,
allowedFileExtensions: ["jpg", "gif", "png", "doc", "docx", "pdf"],
mainClass: "input-group-lg"
});
有什么办法可以解决这个问题?还是这是该插件的默认行为。