多くのデータを持つ大きなオブジェクトがあります。そして、私はこれを他の変数にクローンしたい。インスタンス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になります。アイデアはありますか?
編集
みんな、ありがとう。私は破壊のコードを変更し、これは私の結果です:
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]);
=
ステートメントを使用して、右側にオブジェクトがあるvar
に値を割り当てると、javascriptはオブジェクトをコピーせずに参照します。
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 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;
};
これはクローンではありませんが、結果を取得する簡単な方法の1つは、元のオブジェクトを新しいオブジェクトのプロトタイプとして使用することです。
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
これにより、A
とB
に、obj
からinheritsを継承する新しいオブジェクトが作成されます。つまり、元のプロパティに影響を与えずにプロパティを追加できます。
レガシー実装をサポートするために、この単純なタスクで機能する(部分)シムを作成できます。
if (!Object.create)
Object.create = function(proto) {
function F(){}
F.prototype = proto;
return new F;
}
Object.create
のすべての機能をエミュレートするわけではありませんが、ここでニーズに合うでしょう。
クローン関数を定義できます。
私はこれを使用します:
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);
プロトタイプや関数などはコピーしません。しかし、あなたはあなた自身の必要に応じてそれを適応させるべきです(そしておそらくそれを単純化するでしょう)。
A
とB
は同じオブジェクトを参照するため、A.a
とB.a
は同じオブジェクトの同じプロパティを参照します。
これは、ジョブを実行できる「コピー」関数です。浅いクローンと深いクローンの両方を実行できます。警告に注意してください。 falsey値(他のアプローチがそれらを無視する理由がわかりません)を含む、オブジェクトのすべての列挙可能なプロパティ(継承されたプロパティではない)をコピーします。また、スパース配列の存在しないプロパティもコピーしません。
一般的なコピーまたはクローン機能はありません。これは、コピーまたはクローンがどのような場合でも何をすべきかについて多くの異なるアイデアがあるためです。ほとんどの場合、ホストオブジェクト、またはオブジェクトや配列以外は除外されます。これもプリミティブをコピーします。関数はどうなりますか?
以下をご覧ください。他のアプローチとは少し異なります。
/* 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;
}