ext 上传文件报错 版本 3.x fileUpload: true

VM129:1 Uncaught SyntaxError: Unexpected token <

   at doDecode (ext-all.js:6451)
    at Object.decode (ext-all.js:6569)
    at Ext.form.Action.Submit.handleResponse (ext-all.js:32318)
    at Ext.form.Action.Submit.processResponse (ext-all.js:32217)
    at Ext.form.Action.Submit.success (ext-all.js:32288)
    at o (ext-all.js:5376)
    at Ext.data.Connection.s (ext-all.js:5379)
    at HTMLIFrameElement.C (ext-all.js:1763)

 

解决办法 修改 ext源码 改为

  doDecode = function(json) {

        //加入部分开始
        //孙元龙 加  2019/4/18 解决extbug fileupload
        if(json.indexOf('<pre>') != -1||json.indexOf('</pre>') != -1 || json.indexOf('<PRE>') != -1 ){
            json = json.replace(/<\/?.+?>/g,"");
            json = json.replace(/ /g,"");//dds为得到后的内容
            
        }

    //加入部分结束

        return eval("(" + json + ")")
    },

参考 https://blog.csdn.net/yulong_1988/article/details/51889800

 

 

上一篇:SpringBoot 处理跨域请求问题


下一篇:CorsConfig