.net core版 文件上传/ 支持批量上传拖拽及预览功能(bootstrap fileinput上传文件)
程序员文章站
2023-08-15 11:45:02
上篇文章给大家介绍了mvc文件上传支持批量上传拖拽及预览文件内容校验功能
本篇内容主要解决.net core中文件上传的问题 开发环境:ubuntu+vsco...
上篇文章给大家介绍了mvc文件上传支持批量上传拖拽及预览文件内容校验功能
本篇内容主要解决.net core中文件上传的问题 开发环境:ubuntu+vscode
1.导入所需要的包:nuget install bootstrap-fileinput
注意:这里的导包需要在终端导入【需要在wwwroot文件夹下执行nuget命令】如下图
如果发现没有nuget命令,则需要通过apt-get 或者yum 给系统安装nuge包管理工具,这个nuget和vscode中的插件不是一回事
2前台页面编写:
index.cshtml:
@{ viewdata["title"] = "home page"; layout = null; } <script src="~/jquery.1.9.0/content/scripts/jquery-1.9.0.js"></script> <script src="~/bootstrap.3.3.0/content/scripts/bootstrap.js"></script> <link rel="stylesheet" href="~/bootstrap.3.3.0/content/content/bootstrap.css" rel="external nofollow" > <script type="text/javascript" src="~/bootstrap-fileinput.4.3.8/content/scripts/fileinput.js"></script> <script type="text/javascript" src="~/bootstrap-fileinput.4.3.8/content/scripts/locales/zh.js"></script> <link rel="stylesheet" href="~/bootstrap-fileinput.4.3.8/content/content/bootstrap-fileinput/css/fileinput.css" rel="external nofollow" > <script type="text/javascript"> $(function () { var control = $("#txt_file"); var uploadrul = "/home/uploadfile"; control.fileinput({ language: 'zh', //设置语言 uploadurl: uploadrul, //上传的地址 allowedfileextensions: ['png'],//接收的文件后缀 showupload: true, //显示批量上传按钮 showcaption: false,//是否显示标题 browseclass: "btn btn-primary", //按钮样式 dropzoneenabled: true,//是否显示拖拽区域 //minimagewidth: 50, //图片的最小宽度 //minimageheight: 50,//图片的最小高度 //maximagewidth: 1000,//图片的最大宽度 //maximageheight: 1000,//图片的最大高度 //maxfilesize: 0,//单位为kb,如果为0表示不限制文件大小 //minfilecount: 0, maxfilecount: 100, enctype: 'multipart/form-data', validateinitialcount: true, previewfileicon: "<i class='glyphicon glyphicon-king'></i>", msgfilestoomany: "选择上传的文件数量({n}) 超过允许的最大数值{m}!", }); //导入文件上传完成之后的事件 $("#txt_file").on("fileuploaded", function (event, data, previewid, index) { }); }); </script> </table> <div> <form> <div> <div class="modal-header"> <h4 class="modal-title" id="mymodallabel">请选择xml文件</h4> </div> <div class="modal-body"> <input type="file" name="txt_file" id="txt_file" multiple class="file-loading" /> </div> </div> </form> </div>
基本上和asp.net mvc下边没有区别,只有一个地方需要特别注意一下,外部的script和css文件的引用文件需要放到wwwroot文件中,而不是项目的根目录下。
预览图:
3.主要的区别 ,后台
代码如下:
public jsonresult uploadfile() { uploadresult result = new uploadresult(); try { var ofile = request.form.files["txt_file"]; stream sm=ofile.openreadstream(); result.filename = ofile.filename; if(!directory.exists(appcontext.basedirectory+"/image/")) { directory.createdirectory(appcontext.basedirectory+"/image/"); } string filename=appcontext.basedirectory+"/image/" + datetime.now.tostring("yyyymmddhhmmssss")+guid.newguid().tostring() + ".png"; filestream fs=new filestream(filename,filemode.create); byte[] buffer =new byte[sm.length]; sm.read(buffer,0,buffer.length); fs.write(buffer,0,buffer.length); fs.dispose(); } catch(exception ex) { result.error = ex.message; } return json(result); } public class uploadresult { public string filename { get; set; } public string error { get; set; } }
在netcore中无法再通过request.files对象来获取从前台传递的文件,这里需要使用request.form.files来获取来自客户端提交的文件,接下来需要一个uploadresult结构体,给前台返回json对象 这个结构中必须包含error字段,用来给前台返回错误数据,详情查看
附一张最终的上传成功保存到本地的图片:
以上所述是小编给大家介绍的.net core版 文件上传/ 支持批量上传拖拽及预览功能(bootstrap fileinput上传文件),希望对大家有所帮助
上一篇: ASP.NET数据绑定控件详解
推荐阅读
-
.net core版 文件上传/ 支持批量上传拖拽及预览功能(bootstrap fileinput上传文件)
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
实现MVC文件上传支持批量上传拖拽及预览文件内容校验功能的代码示例
-
.net core版上传文件/ 批量上传拖拽及预览功能(bootstrap fileinput上传文件)的实例详解
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
.net core版上传文件/ 批量上传拖拽及预览功能(bootstrap fileinput上传文件)的实例详解
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)
-
实现MVC文件上传支持批量上传拖拽及预览文件内容校验功能的代码示例
-
基于bootstrap的上传插件fileinput实现ajax异步上传功能(支持多文件上传预览拖拽)