如果使用语句将值赋给右侧有对象的 ,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.foo
obj.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);