克隆对象而不引用 javascript

2022-08-30 00:59:07

我有一个包含大量数据的大对象。我想在其他变量中克隆这个。当我设置实例 B 的某个参数时,在原始对象中具有相同的结果:

var obj = {a: 25, b: 50, c: 75};
var A = obj;
var B = obj;

A.a = 30;
B.a = 40;

alert(obj.a + " " + A.a + " " + B.a); // 40 40 40

我的输出应该是 25 30 40。有什么想法吗?

编辑

谢谢大家。我更改了troyst的代码,这是我的结果:

Object.prototype.clone = Array.prototype.clone = function()
{
    if (Object.prototype.toString.call(this) === '[object Array]')
    {
        var clone = [];
        for (var i=0; i<this.length; i++)
            clone[i] = this[i].clone();

        return clone;
    } 
    else if (typeof(this)=="object")
    {
        var clone = {};
        for (var prop in this)
            if (this.hasOwnProperty(prop))
                clone[prop] = this[prop].clone();

        return clone;
    }
    else
        return this;
}

var obj = {a: 25, b: 50, c: 75};
var A = obj.clone();
var B = obj.clone();
A.a = 30;
B.a = 40;
alert(obj.a + " " + A.a + " " + B.a);

var arr = [25, 50, 75];
var C = arr.clone();
var D = arr.clone();
C[0] = 30;
D[0] = 40;
alert(arr[0] + " " + C[0] + " " + D[0]);

答案 1

如果使用语句将值赋给右侧有对象的 ,javascript 不会复制但引用该对象。=var

剧透:使用可能有效,但成本高昂,并且可能会像在JSON.parse(JSON.stringify(obj))TypeError

const a = {};
const b = { a };
a.b = b;
const clone = JSON.parse(JSON.stringify(a));
/* Throws
Uncaught TypeError: Converting circular structure to JSON
    --> starting at object with constructor 'Object'
    |     property 'b' -> object with constructor 'Object'
    --- property 'a' closes the circle
    at JSON.stringify (<anonymous>)
    at <anonymous>:4:6
*/

从es2015开始,如果你想要一个浅副本(克隆对象,但在内部结构中保持深度重构),你可以使用解构:

const obj = { foo: { bar: "baz" } };
const shallowClone = { ...obj };

shallowClone是一个新对象,但包含对 与 相同的对象的引用。shallowClone.fooobj.foo

您可以使用 lodash 的方法,如果您无权访问点差运算符,该方法也会执行相同的操作。clone

var obj = {a: 25, b: 50, c: 75};
var A = _.clone(obj);

或者 lodash 的方法(如果您的对象具有多个对象级别)cloneDeep

var obj = {a: 25, b: {a: 1, b: 2}, c: 75};
var A = _.cloneDeep(obj);

或者 lodash 的方法,如果你打算扩展源对象merge

var obj = {a: 25, b: {a: 1, b: 2}, c: 75};
var A = _.merge({}, obj, {newkey: "newvalue"});

或者你可以使用jQuerys方法:extend

var obj = {a: 25, b: 50, c: 75};
var A = $.extend(true,{},obj);

以下是jQuery 1.11扩展方法的源代码:

jQuery.extend = jQuery.fn.extend = function() {
    var src, copyIsArray, copy, name, options, clone,
        target = arguments[0] || {},
        i = 1,
        length = arguments.length,
        deep = false;

    // Handle a deep copy situation
    if ( typeof target === "boolean" ) {
        deep = target;

        // skip the boolean and the target
        target = arguments[ i ] || {};
        i++;
    }

    // Handle case when target is a string or something (possible in deep copy)
    if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
        target = {};
    }

    // extend jQuery itself if only one argument is passed
    if ( i === length ) {
        target = this;
        i--;
    }

    for ( ; i < length; i++ ) {
        // Only deal with non-null/undefined values
        if ( (options = arguments[ i ]) != null ) {
            // Extend the base object
            for ( name in options ) {
                src = target[ name ];
                copy = options[ name ];

                // Prevent never-ending loop
                if ( target === copy ) {
                    continue;
                }

                // Recurse if we're merging plain objects or arrays
                if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
                    if ( copyIsArray ) {
                        copyIsArray = false;
                        clone = src && jQuery.isArray(src) ? src : [];

                    } else {
                        clone = src && jQuery.isPlainObject(src) ? src : {};
                    }

                    // Never move original objects, clone them
                    target[ name ] = jQuery.extend( deep, clone, copy );

                // Don't bring in undefined values
                } else if ( copy !== undefined ) {
                    target[ name ] = copy;
                }
            }
        }
    }

    // Return the modified object
    return target;
};

var item ={ 'a': 1, 'b': 2}
Object.assign({}, item);

答案 2

虽然这不是克隆,但获得结果的一种简单方法是使用原始对象作为新对象的原型。

您可以使用以下命令执行此操作:Object.create

var obj = {a: 25, b: 50, c: 75};
var A = Object.create(obj);
var B = Object.create(obj);

A.a = 30;
B.a = 40;

alert(obj.a + " " + A.a + " " + B.a); // 25 30 40

这将在 中创建一个新对象,该对象继承自 。这意味着您可以添加属性而不会影响原始属性。ABobj

若要支持旧版实现,可以创建适用于此简单任务的(部分)填充程序。

if (!Object.create)
    Object.create = function(proto) {
        function F(){}
        F.prototype = proto;
        return new F;
    }

它不会模拟 的所有功能,但它可以满足您在此处的需求。Object.create