克隆对象没有引用javascript

我有一个包含大量数据的大对象。我想在另一个变量中复制这个。当我设置实例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。 什么好主意吗?< / p >

编辑

谢谢每一个人。我改变了破坏代码,这是我的结果:

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]);
338460 次浏览

你可以定义一个克隆函数。

我用的是这个:

function goclone(source) {
if (Object.prototype.toString.call(source) === '[object Array]') {
var clone = [];
for (var i=0; i<source.length; i++) {
clone[i] = goclone(source[i]);
}
return clone;
} else if (typeof(source)=="object") {
var clone = {};
for (var prop in source) {
if (source.hasOwnProperty(prop)) {
clone[prop] = goclone(source[prop]);
}
}
return clone;
} else {
return source;
}
}


var B = goclone(A);

它不复制原型、函数等等。但是您应该根据自己的需要对其进行调整(或者简化)。

AB引用同一个对象,所以A.aB.a引用同一个对象的相同属性。

编辑

这里有一个“复制”函数可以完成这项工作,它可以进行浅克隆和深克隆。注意注意事项。它复制对象的所有可枚举属性(不是继承的属性),包括那些具有假值的属性(我不明白为什么其他方法忽略它们),它也不复制稀疏数组中不存在的属性。

没有通用的复制或克隆功能,因为在每种情况下,关于复制或克隆应该做什么有许多不同的想法。大多数人排除了宿主对象,或者对象或数组以外的任何东西。这个也复制原语。函数应该发生什么?

所以看看下面的,这是一种与其他人略有不同的方法。

/* Only works for native objects, host objects are not
** included. Copies Objects, Arrays, Functions and primitives.
** Any other type of object (Number, String, etc.) will likely give
** unexpected results, e.g. copy(new Number(5)) ==> 0 since the value
** is stored in a non-enumerable property.
**
** Expects that objects have a properly set *constructor* property.
*/
function copy(source, deep) {
var o, prop, type;


if (typeof source != 'object' || source === null) {
// What do to with functions, throw an error?
o = source;
return o;
}


o = new source.constructor();


for (prop in source) {


if (source.hasOwnProperty(prop)) {
type = typeof source[prop];


if (deep && type == 'object' && source[prop] !== null) {
o[prop] = copy(source[prop]);


} else {
o[prop] = source[prop];
}
}
}
return o;
}

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

你可以使用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

这将在AB中创建一个新对象,该对象从obj继承了。这意味着您可以在不影响原始的情况下添加属性。

为了支持遗留的实现,你可以创建一个(部分)垫片来完成这个简单的任务。

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

它没有模拟Object.create的所有功能,但它可以满足您的需要。

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

剧透:使用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.foo保存着与obj.foo相同的对象的引用。

你可以使用lodashclone方法,如果你没有权限访问扩散操作符,它也可以做同样的事情。

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

或者如果你的对象有多个对象级别,lodashcloneDeep方法

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

或者如果你想扩展源对象,lodashmerge方法

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

或者你可以使用jquery的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);