Si vous utilisez un =
pour attribuer une valeur à un var
avec un objet sur le côté droit, javascript ne copiera pas mais fera référence à l'objet.
Spoiler : utiliser JSON.parse(JSON.stringify(obj))
peut fonctionner mais est coûteux, et pourrait jeter un TypeError
dans le cas de
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
*/
Depuis es2015, si vous voulez une copie superficielle (cloner l'objet, mais en conservant des références profondes dans la structure interne), vous pouvez utiliser la déstructuration :
const obj = { foo: { bar: "baz" } };
const shallowClone = { ...obj };
shallowClone
est un nouvel objet, mais shallowClone.foo
contient une référence au même objet que obj.foo
.
Vous pouvez utiliser lodash 's clone
qui fait la même chose, si vous n'avez pas accès à l'opérateur d'étalement.
var obj = {a: 25, b: 50, c: 75};
var A = _.clone(obj);
Ou lodash 's cloneDeep
si votre objet a plusieurs niveaux d'objet
var obj = {a: 25, b: {a: 1, b: 2}, c: 75};
var A = _.cloneDeep(obj);
Ou lodash 's merge
si vous voulez étendre l'objet source
var obj = {a: 25, b: {a: 1, b: 2}, c: 75};
var A = _.merge({}, obj, {newkey: "newvalue"});
Ou vous pouvez utiliser jQuerys extend
méthode :
var obj = {a: 25, b: 50, c: 75};
var A = $.extend(true,{},obj);
Voici jQuery 1.11 code source de la méthode extend :
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);