前臺轉爲json格式,後臺接收

前臺: var scripts= [];
    $("table[name='addScript']").each(function(i){
        var scripts_node={};
        $(this).each(function(){
                var script_id=$(this).find("input[name='script_id']").val();
                var script_type=$(this).find("select[name='script_type']").val();
                var script_order=$(this).find("input[name='script_order']").val();
                var script_show=$(this).find("textarea[name='script_show']").val();
                var script_code=$(this).find("input[name='script_code']").val();
                var script_name=$(this).find("input[name='script_name']").val();
               if(script_id!=undefined)
                    scripts_node.script_id = script_id;
                if(script_type!=undefined)
                    scripts_node.script_type = script_type;
                if(script_order!=undefined)
                    scripts_node.script_order = script_order;
                if(script_show!=undefined)
                    scripts_node.script_show = script_show;
                if(script_code!=undefined)
                    scripts_node.script_code = script_code;
                if(script_name!=undefined)
                    scripts_node.script_name = script_name;
        });
        scripts.push(scripts_node);
    });
    //格式化數組

    scripts= arrayToJson(scripts); node

function arrayToJson(o) {
    var r = [];
    if (typeof o == "string")
        return "\"" + o.replace(/([\'\"\\])/g, "\\$1").replace(/(\n)/g, "\\n")
            .replace(/(\r)/g, "\\r").replace(/(\t)/g, "\\t") + "\"";
    if (typeof o == "object") {
        if (!o.sort) {
            for (var i in o)
                r.push(i + ":" + arrayToJson(o[i]));
            if (!!document.all && !/^\n?function\s*toString\(\)\s*\{\n?\s*\[native code\]\n?\s*\}\n?\s*$/.
                test(o.toString)) {
                r.push("toString:" + o.toString.toString());
            }
            r = "{" + r.join() + "}";
        } else {
            for (var i = 0; i < o.length; i++) {
                r.push(arrayToJson(o[i]));
            }
            r = "[" + r.join() + "]";
        }
        return r;
    }
    return o.toString();
}
數組

後臺 this

  String scripts = request.getParameter("scripts"); spa

 JSONArray mainArray=JSON.parseArray(scripts);
            for (int i=0;i<mainArray.size();i++) {
                String scripts_id = mainArray.getJSONObject(i).getString("script_id");
                String scripts_show = mainArray.getJSONObject(i).getString("script_show");
                String scripts_order = mainArray.getJSONObject(i).getString("script_order");
                String script_type = mainArray.getJSONObject(i).getString("script_type");
                String script_code = mainArray.getJSONObject(i).getString("script_code");
                String script_name = mainArray.getJSONObject(i).getString("script_name");
}
code

相關文章
相關標籤/搜索