我正在尝试使用异步方法链接创建一个类。但是,在从数据库中完全获取数据之前,我仍在设置新值。我想念什么吗?
我也不想使用任何第三方模块。
/* Class */
class UserDB {
constructor() {
this.user = {}
this.user.username = null
}
set(name, value) {
this.user[name] = value
return this
}
update() {
return new Promise((resolve, reject) => {
const db = MongoConnection.client.db('database').collection('users')
db.updateOne({ _id: this.user._id }, { $set: this.user}, (err, result) => {
if (err) reject(err)
resolve(this)
})
})
}
findByEmail(email) {
return new Promise((resolve, reject) => {
const db = MongoConnection.client.db('database').collection('users')
db.findOne({ email: email }, (err, result) => {
if (err) reject(err)
this.user = result
resolve(this)
})
})
}
}
module.exports = UserDB
/*execution*/
new UserDB().findByEmail('email@email.com')
.set('username', 'new_name')
.update()
答案 0 :(得分:0)
那确实很有趣。您可以使用将操作附加到.then
链的方法来使返回的Promise重载:
class AsyncChainable {
constructor() {
this._methods = {};
const that = this;
for(const key of Object.getOwnPropertyNames(Object.getPrototypeOf(this))) {
this._methods[key] = function(...args) {
return that.chain(this.then(() => that[key](...args)));
}
}
chain(promise) { return Object.assign(promise, this._methods); }
}
然后在您的custon课堂中使用它:
class User extends AsyncChainable {
login() {
return this.chain((async () => {
// some logic
})());
}
}
您可以这样做:
(new User).login().login().then(console.log);