博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ajaxfileupload上传文件出现SyntaxError:unexpected token <错误
阅读量:5295 次
发布时间:2019-06-14

本文共 1586 字,大约阅读时间需要 5 分钟。

function ajaxFileUpload() {          $.ajaxFileUpload      (        {          url: uri,          secureuri: false,          fileElementId: 'upFile',          dataType: 'content', //这里修改为content                        success: function (data, status) {            alert(data);          },                            error: function (data, status, e) {             alert(e);          }        }      )  }

  结果返回的json数据如猜测,json数据被包含在一个<pre></pre>的标签中.

 

网上查了下原因,是因为Server端的Response上加上了contentType="application/json"。但有时后端这么做是必须的,

所以修改ajaxFileUpload源码,将<pre></pre>标签去掉,如下:

uploadHttpData: function( r, type ) {          var data = !type;          data = type == "xml" || data ? r.responseXML : r.responseText;          // If the type is "script", eval it in global context          if ( type == "script" )              jQuery.globalEval( data );          // Get the JavaScript object, if JSON is used.          if ( type == "json" ) {               以下为新增代码///               data = r.responseText;               var start = data.indexOf(">");               if(start != -1) {                 var end = data.indexOf("<", start + 1);                 if(end != -1) {                   data = data.substring(start + 1, end);                  }               }                ///以上为新增代码///                eval( "data = " + data);          }          // evaluate scripts within html          if ( type == "html" )              jQuery("
").html(data).evalScripts(); return data; }

  或者是在返回的“content”类型数据后

 

 

得到 JSON 数据

转载于:https://www.cnblogs.com/qinweizhi/p/6984434.html

你可能感兴趣的文章
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>
C语言中求最大最小值的库函数
查看>>
js学习(精华帖)
查看>>
和小哥哥一起刷洛谷(1)
查看>>
jquery对id中含有特殊字符的转义处理
查看>>
获取元素样式信息于三中获取方式的区别
查看>>
遇麻烦,Win7+Ubuntu12.10+Archlinux12.10 +grub
查看>>
SqlBulkCopy大批量导入数据
查看>>
chrome(谷歌浏览器)“无法从该网站添加应用、扩展程序和用户脚本”问题
查看>>
HTTP协议 (四) 缓存
查看>>
python学习之random
查看>>
使用onclick跳转到其他页面/跳转到指定url
查看>>
【转载】测试计划模板
查看>>
pandas 修改指定列中所有内容
查看>>
ubuntu18.04 复制或剪切某文件夹下的前x个文件到另一个文件夹下
查看>>
input的value中有特殊字符
查看>>
字符串压缩
查看>>