zoukankan      html  css  js  c++  java
  • ext 中 missing } in XML expression 的解决办法

        missing } in XML expression

    说有返回值都会添加 <pre>

       (<pre>{success:true, msg:'成功'}</pre>) ... ext-all.js (line 7364)最后查了官方论坛,发现有些人也遇到和我一样的问题,但是网络上基本上没有解决方案,只是最终发现是由于fileUpload属性的特殊机制导 致,当fileUpload为true时,formpanel在提交后返回的json数据都会被bug上一个<pre>标签,这个在 ff1.5里正常, 2.0以上都会有此BUG, IE6下正常。为解决此BUG,在ext-all.js里修改如下:{code}


            //解决ff里的bug
            var temp;
            if(json.indexOf('<pre>') != -1){
                temp = json.substring(5, json.length-6);
                alert("temp = " + temp)
                return eval("(" + temp + ')');
            }

    {code}

    还有一种办法是 

     后台这样处理

        public void ProcessRequest (HttpContext context) {
            context.Response.ContentType 
    = "text/html";
            context.Response.Write(
    @"{success: true, data:'1'}");
        }
  • 相关阅读:
    P1092 虫食算
    P1040 加分二叉树
    cfER76 abcd
    cf599 div2 a/b1/b2/c
    AtCoder Contest 144 DE
    Round G 2019
    luogu3084 Photo 单调队列优化DP
    luogu4234 最小差值生成树
    luogu1373 小a和uim之大逃离
    luogu1070 道路游戏 单调队列
  • 原文地址:https://www.cnblogs.com/gwazy/p/1516542.html
Copyright © 2011-2022 走看看