JavaScript でオブジェクトを複製しようとしています。プロトタイプ関数を持つ独自の「クラス」を作成しました。
私の問題:オブジェクトのクローンを作成すると、クローンはプロトタイプ関数にアクセス/呼び出すことができません。
クローンのプロトタイプ関数にアクセスしようとすると、エラーが発生します。
clone.render は関数ではありません
オブジェクトのクローンを作成し、そのプロトタイプ関数を維持する方法を教えてください
この単純な JSFiddle は、私が得るエラーを示しています: http://jsfiddle.net/VHEFb/1/
function cloneObject(obj)
{
// Handle the 3 simple types, and null or undefined
if (null == obj || "object" != typeof obj) return obj;
// Handle Date
if (obj instanceof Date) {
var copy = new Date();
copy.setTime(obj.getTime());
return copy;
}
// Handle Array
if (obj instanceof Array) {
var copy = [];
for (var i = 0, len = obj.length; i < len; ++i) {
copy[i] = cloneObject(obj[i]);
}
return copy;
}
// Handle Object
if (obj instanceof Object) {
var copy = {};
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) copy[attr] = cloneObject(obj[attr]);
}
return copy;
}
throw new Error("Unable to copy obj! Its type isn't supported.");
}
function MyObject(name)
{
this.name = name;
// I have arrays stored in this object also so a simple cloneNode(true) call wont copy those
// thus the need for the function cloneObject();
}
MyObject.prototype.render = function()
{
alert("Render executing: "+this.name);
}
var base = new MyObject("base");
var clone = cloneObject(base);
clone.name = "clone";
base.render();
clone.render(); // Error here: "clone.render is not a function"