好好爱自己!

javascript 对象的复制

1.  jQuery has a method that can be used to deep-clone objects, the$.extend() function. Let’s take a look at how it can be used:

1
2
3
4
5
6
7
8
9
10
var bob = {
    name: "Bob",
    age: 32
};
  
var bill = $.extend(true, {}, bob);
bill.name = "Bill";
  
console.log(bob);
console.log(bill);

注意:Pretty handy, eh? This method is a little slower than the JSON exploit, but that shouldn’t really be a problem when you’re only doing a few clones. If you’re doing hundreds or thousands of clones, it might be time to think about the JSON exploit or another solution.

 

2.   A clever exploit of the JSON library to deep-clone objects

We can exploit the JSON library for a rather fast way of deep-cloning objects. Check it out:

1
2
3
4
5
6
7
8
9
10
var bob = {
    name: "Bob",
    age: 32
};
  
var bill = (JSON.parse(JSON.stringify(bob)));
bill.name = "Bill";
  
console.log(bob);
console.log(bill);

3.  tipJS中的一个方法,也不错 ,不过我自己还没完全理解这个方法的独到之处(或者说这个方法的用途)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
util__.cloneObject = function(obj, isFlat){
        var newObj, k;
        if (obj == null || typeof obj != "object") return obj;
        if (!isFlat) {
            newObj = (obj instanceof Array) ? [] : {};
            for (k in obj) {
                if (typeof obj[k] == "object") newObj[k] = util__.cloneObject(obj[k], false);
                else newObj[k] = obj[k];
            }
            return newObj;
        } else return __cloneObjN(obj);
    };
 
 
var __cloneObjN = function(target) {
        if (util__.isFunction(Object.create)) __cloneObjN = function(o) {   return Object.create(o); };
        else {
            __cloneObjN = function(o) {
                function F() {};
                F.prototype = o;
                return new F;
            };
        }
        return __cloneObjN(target);
    };

  

posted @   立志做一个好的程序员  阅读(215)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现

不断学习创作,与自己快乐相处

点击右上角即可分享
微信分享提示