How to use JSON to create object that Inherits from Object Type? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T03:07:59Zhttp://stackoverflow.com/feeds/question/185429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185429/how-to-use-json-to-create-object-that-inherits-from-object-type5How to use JSON to create object that Inherits from Object Type?Chris Pietschmann2008-10-09T00:02:10Z2008-10-09T04:24:44Z
<p>I know how to use JSON to create objects, but there doesn't seem to be away to use JSON to create an object that is of a specific object type.</p>
<p>Here's an example of an Object and creating an instance of it:</p>
<pre><code>Person = function() { };
Person.prototype = {
FirstName: null,
GetFirstName: function() {
return this.FirstName;
}
};
//Create an instance of the Person Object
var me = new Person();
me.FirstName = "Chris";
alert(me.GetFirstName()); //alert the FirstName property
</code></pre>
<p>Now, I would like to use JSON to create a new Person object so that the GetFirstName function works on it.</p>
<p>Here's something like that I'm looking to do (but this code doesn't work):</p>
<pre><code>var you = new Person() { FirstName: "Mike" };
// OR
var you = new Person{ FirstName: "Mike" };
</code></pre>
<p>Is there anyway to use JSON to create an object that is of a specific type?</p>
<p>UPDATE: My sample with the Person object is just to simplify the question. In fact, I am unable to modify the constructors of the actual objects that I need to create instances of. The objects are part of a third-party library.</p>
<p>UPDATE: Using some of the suggestions below, I was able to figure out a way to create an object that inherits from the original, and accept JSON in it's constructor. This is neat!</p>
<pre><code>personWrapper = function(obj){
for(var o in obj){
this[o] = obj[o];
}
};
personWrapper.prototype = new Person();
var you = new personWrapper({FirstName: "Chris"});
alert(you.GetFirstName());
alert(you instanceof Person); // returns True - we are successfully inheriting from Person!
</code></pre>
http://stackoverflow.com/questions/185429/how-to-use-json-to-create-object-that-inherits-from-object-type/185438#1854387Answer by nickf for How to use JSON to create object that Inherits from Object Type?nickf2008-10-09T00:06:46Z2008-10-09T00:16:05Z<p>I don't imagine so. I'd create a function on the Person class to initialise from a JSON object if I were you.</p>
<pre><code>function Person() {
this.loadFromJSON = function(json) {
this.FirstName = json.FirstName;
};
}
</code></pre>
<p>If you didn't know what class the JSON object was representing beforehand, perhaps add an extra variable into your JSON.</p>
<pre><code>{ _className : "Person", FirstName : "Mike" }
</code></pre>
<p>And then have a 'builder' function which interprets it.</p>
<pre><code>function buildFromJSON(json) {
var myObj = new json["_className"]();
myObj.loadFromJSON(json);
return myObj;
}
</code></pre>
<p><hr /></p>
<p>Update: since you say the class is part of a third-party library which you can't change, you could either extend the class with prototyping, or write a function which just populates the class externally.</p>
<p>eg:</p>
<pre><code>Person.prototype.loadFromJSON = function(json) {
// as above...
};
</code></pre>
<p>or</p>
<pre><code>function populateObject(obj, json) {
for (var i in json) {
// you might want to put in a check here to test
// that obj actually has an attribute named i
obj[i] = json[i];
}
}
</code></pre>
http://stackoverflow.com/questions/185429/how-to-use-json-to-create-object-that-inherits-from-object-type/185443#1854434Answer by Aupajo for How to use JSON to create object that Inherits from Object Type?Aupajo2008-10-09T00:09:11Z2008-10-09T00:09:11Z<p>You could allow new Person() to accept an object to populate attributes with as a parameter.</p>
<pre><code>var you = new Person({ firstName: 'Mike' });
</code></pre>
http://stackoverflow.com/questions/185429/how-to-use-json-to-create-object-that-inherits-from-object-type/185892#1858922Answer by harley.333 for How to use JSON to create object that Inherits from Object Type?harley.3332008-10-09T04:03:51Z2008-10-09T04:03:51Z<p>You can derive an object from theirs. Your constructor can accept the object you want, but call their constructor in an unaffected fashion:</p>
<pre><code>function yourWrapper(obj) {
theirObject.call(this);
for (var s in obj) {
this[s] = obj[s];
}
}
yourWrapper.prototype = new theirObject();
</code></pre>
<p>Or something like that :)</p>