3.f"/> 3.f">
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;} 4 .fileLink input {position: absolute;font-size: 100px;right: 0;top: 0;opacity: 0;} 5 .fileLink:hover {background: #AADFFD;border-color: #78C3F3; cursor:pointer;color: #004974;text-decoration: none;} 6 </style> 7 <span class="fL fileLink" style="padding-left: 10px;">选择文件<input type="file" id="uploadify" name="uploadify" value="上传数据" /></span> 8 <script src="../../Plugins/jquery/jquery-1.7.2.min.js?1.1.11" type="text/javascript"></script> 9 <script src="../../Plugins/ajaxfileupload.js?1.1.11" type="text/javascript"></script>10 11 <script>12 $("#uploadify").on("change", function () {13 //var file = $("#uploadify")[0].files[0];14 $.ajaxFileUpload({15 url: './ImportDynamic.ashx',16 fileElementId: 'uploadify',17 dataType: 'text',18 success: function (data, status) {19 alert(1);20 },21 error: function () { }22 });23 }); </script>25 26 一般处理程序:27 context.Response.ContentType = "text/plain";28 var filePath = "uploadfile/xxx.xls";29 filePath = context.Server.MapPath(filePath);30 Import.GetCommonReportFile(filePath);31 //context.Response.Write("返回文本数据,否则前台就会报如上错误");
위 내용은 ajaxfileupload 업로드 시 발생하는 문제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!