自制json转化函数

自制json转化函数

月光魔力鸭

2018-08-30 18:38 阅读 511 喜欢 0 json转化 对象转string

在web开发过程中,现在JSON 已经到了俯拾皆是的地步了,操作JSON对于JS来说非常简单,那么我们对于JSON的转化是如何应对的呢?

一、JSON插件

json2.js

json2.js主要功能是做什么的? json2.js提供了json的序列化和反序列化方法,可以将一个json对象转换成json字符串,也可以将一个json字符串转换成一个json对象。 json2.js在浏览器不支持json.parse的内置方法时,最有效。json2.js会创建一个内部的全局变量,提供json对象与字符串之间的转换。

二、浏览器自带

常用的eval 方法,可以将json字符串转化为js对象,不过eval不太好调试,且性能稍微有点下降,不过也还好了。 至于网上所说的安全性问题,我觉的不是很大,具体可以参考知乎,有比较详细的解答,相信各位看官能够自行理解。

三、自己实现

如果以上两种都不满足的话,可以自行实现这些需求。 我现在用的反序列化是eval ,序列化是自己写的,下面贴出代码,各位看官顺便提出下各自的见解。

stringfy : function(obj){
        if(null == obj || obj == undefined)return undefined;
        if(typeof obj == 'string')return obj;
        if(typeof obj =='number')return obj;
        var arrParse = function(temp){
            var tempstr = [];
            tempstr.push('[');
            for(var i=0;i<temp.length;i++){
                var tempobj = temp[i];
                var str = switchObj(tempobj);
                tempstr.push(str);
                if(i != temp.length-1){
                    tempstr.push(',');
                }
            }
            tempstr.push(']');
            return tempstr.join('');
        
        };
        var switchObj  = function(tempobj){
            if(typeof tempobj == 'object'){
                if(tempobj instanceof Array){
                    return arrParse(tempobj);
                }else if(tempobj instanceof Object){
                    return objParse(tempobj);	
                }
            }else if(typeof tempobj == 'function'){
                return ''+tempobj.toString()+'';
            }else{
                return '"'+tempobj+'"';
            }
            return '';
        };
        var objParse = function(obj){
            var htmls = [];
            htmls.push('{');
            for(var p in obj){
                var tempobj = obj[p];
                var str= switchObj(tempobj);
                htmls.push('"'+p+'":'+str+'');
                htmls.push(',');
            }
            htmls.splice(htmls.length-1);
            htmls.push('}');
            return htmls.join('');
        };
        return switchObj(obj);
    }

小白的写法,字符串拼接,刚接触JS ,勿喷...

转载请注明出处: https://chrunlee.cn/article/parse-json-to-string.html


感谢支持!

赞赏支持
提交评论
评论信息 (请文明评论)
暂无评论,快来快来写想法...
推荐
web网站上总会有在文本域中提交代码的操作,那么如何处理呢?
前端时间搞了个小转码,放在后台,但是特别占带宽,想着能不能从前台把这个事搞定呢?读取图片的二进制,然后将字节流处理后重新生成图片展示处理啊。
this 是 JavaScript 的一大难点,多年经验的前端程序员都可能对这方面模糊。this 在大量的函数、类库中都有使用,理清显式绑定和隐式绑定有助于理解或书写这类函数。
现象:在IOS中,jsp页面绑定的点击事件,点击后延迟很大,接近1000ms,反应很慢
最近做个nodejs的项目,使用了thinkjs 3.0 的框架,编辑器为vs code ,之前用的好好的,每次 . 后都有提示的,可是使用了多模块后发现.. model的提示没有了..
在通过chrome浏览器来调用摄像头的时候发现getUserMedia报错,但是本地开发却没有问题,主要原因是https环境的问题。chrome 不允许在非https和非localhost下的非安全环境进行调用。
nvm install 16.15.0 : The process cannot access the file because it is being used by another process
近期需求:将一棵树导出到excel中,树是ztree,通过插件Table2excel导出table到excel中。