解决AjaxFileupload 上传时会出现连接重置的问题
程序员文章站
2023-02-25 13:33:36
1.ajaxfileupload 上传时会出现如下问题:
2. 网上有很多的解决办法,在这里,我又发现了一种,可能你的错误会是这个原因引起的
------原因是 :...
1.ajaxfileupload 上传时会出现如下问题:
2. 网上有很多的解决办法,在这里,我又发现了一种,可能你的错误会是这个原因引起的
------原因是 : 你在一般处理程序中没有返回前台需要的数据格式字符串
3.下面给出一个例子:
前台:
<style type="text/css"> .filelink{position: relative;display: inline-block;background: #fff;border: 1px solid #0980d0;border-radius: 4px;padding: 2px 8px;margin-left:10px;margin-top:10px;overflow: hidden;color: #1e88c7;text-decoration: none;text-indent: 0;line-height: 20px;} .filelink input {position: absolute;font-size: 100px;right: 0;top: 0;opacity: 0;} .filelink:hover {background: #aadffd;border-color: #78c3f3;cursor:pointer;color: #004974;text-decoration: none;} </style> <span class="fl filelink" style="padding-left: 10px;">选择文件<input type="file" id="uploadify" name="uploadify" value="上传数据" /></span> <script src="../../plugins/jquery/jquery-1.7.2.min.js" type="text/javascript"></script> <script src="../../plugins/ajaxfileupload.js" type="text/javascript"></script> <script> $("#uploadify").on("change", function () { //var file = $("#uploadify")[0].files[0]; $.ajaxfileupload({ url: './importdynamic.ashx', fileelementid: 'uploadify', datatype: 'text', success: function (data, status) { alert(1); }, error: function () { } }); }); </script> 一般处理程序: context.response.contenttype = "text/plain"; var filepath = "uploadfile/xxx.xls"; filepath = context.server.mappath(filepath); import.getcommonreportfile(filepath); //context.response.write("返回文本数据,否则前台就会报如上错误");
4.插件:http://files.cnblogs.com/files/namedl/ajaxfileupload.js
以上所述是小编给大家介绍的解决ajaxfileupload 上传时会出现连接重置的问题,希望对大家有所帮助
推荐阅读
-
【SpringMVC】---- 设置最大文件上传大小后,发送超过最大上传大小后,网页却出现连接被重置【已解决】
-
win7系统连接远程桌面出现闪退问题的两种解决方法详细教程
-
解决AjaxFileupload 上传时会出现连接重置的问题
-
Win10系统重置电脑时出现问题未进行任何更改的原因及解决方法
-
Oracle导dmp出现文件ORA-12154: TNS: 无法解析指定的连接标识符问题的解决方案
-
与虚拟机Oracle连接出现ora-12154问题的解决方法
-
关于Oracle本地连接出现与监听有关的问题的解决方法探讨
-
解决使用ajaxFileUpload上传控件出现的问题:回调函数总是进入error或success
-
在PHP+Apache+MySQL环境下(windows系统),连接SQLServer数据出现“can not find driver”问题的解决办法
-
docker使用storage出现Exit导致文件无法上传服务器的问题及解决方案