admin管理员组文章数量:1351976
I have a created a class User
. It has some properties like: name, id, password, etc.
I've set up a constructor like:
function User(name1, email, password) {
this.name = name1;
this.id = __GUID();
this.type = __TYPE;
this.addNewEmail(email);
this.password = (new Password).createFromRawPassword(password).crypt;
}
And some prototype functions like:
User.prototype.save = function(cb, callback) {
return cb.bucket.upsert(this.id, this, function(err, res) {
if (callback == null) {
return callback(err, res);
}
});
};
User.prototype.addNewEmail = function(email) {
this.emails = this.emails || [];
return this.emails.push(email);
};
This works pretty nice for me, and let's me store my object as serialized JSON (in a couchbase database with NodeJS) without including in the object the functions.
The problem es when I get the object from DB. It es with all the properties, as stored, but I need to add back the functions. I have tried to use some extend
functions for mixins that I found, but they add the functions as ownProperties, and therefore, next time I save the updated record to DB, I get the functions saved.
How can I turn the received object into a object of type User again? To get the required methods of the class appearing also on the instance.
I have a created a class User
. It has some properties like: name, id, password, etc.
I've set up a constructor like:
function User(name1, email, password) {
this.name = name1;
this.id = __GUID();
this.type = __TYPE;
this.addNewEmail(email);
this.password = (new Password).createFromRawPassword(password).crypt;
}
And some prototype functions like:
User.prototype.save = function(cb, callback) {
return cb.bucket.upsert(this.id, this, function(err, res) {
if (callback == null) {
return callback(err, res);
}
});
};
User.prototype.addNewEmail = function(email) {
this.emails = this.emails || [];
return this.emails.push(email);
};
This works pretty nice for me, and let's me store my object as serialized JSON (in a couchbase database with NodeJS) without including in the object the functions.
The problem es when I get the object from DB. It es with all the properties, as stored, but I need to add back the functions. I have tried to use some extend
functions for mixins that I found, but they add the functions as ownProperties, and therefore, next time I save the updated record to DB, I get the functions saved.
How can I turn the received object into a object of type User again? To get the required methods of the class appearing also on the instance.
Share Improve this question asked May 14, 2015 at 10:43 Vicenç GascóVicenç Gascó 1,3462 gold badges13 silver badges21 bronze badges 1-
Found a temporary solution:
instance.__proto__ = User.prototype
, but I find it very awkward. Is this ok for Node.js? Any other good solution? – Vicenç Gascó Commented May 14, 2015 at 10:57
1 Answer
Reset to default 11Multiple ways to do it:
this is roughly the same as your way:
Object.setPrototypeOf(instance, User.prototype)
you can instantiate a new object and copy properties:
var obj = Object.assign(Object.create(User.prototype), instance);
you can use any extend
implementation instead of Object.assign
(it's not available natively yet)
or you can change your User
implementation to store all fields inside of a single property, which is object
本文标签: nodejsCopy Javascript quotClassquot Prototype to an ObjectStack Overflow
版权声明:本文标题:node.js - Copy Javascript "Class" Prototype to an Object - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743908003a2559859.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论