我想知道如何 thunkify(包装在 thunk 中)一个库以用于 co. 该库如下所示。所有客户端调用都使用库中的其他对象。
Library.Client = function(opts) {
}
Library.Client.prototype.createList = function(opts, cb) {
options.client = this;
var list = new Library.List(opts, function(err, data) {
if (typeof(cb) === 'function') {
cb(err, list, data);
}
});
}
Library.List = function(opts, cb) {
// setup with opts
if (cb) this.fetch(cb);
}
Library.List.prototype.fetch = function(cb) {
var list = [1,2];// get list
for (var i = 0; i < list.length; i++) {
list[i] = new Library.Item(list[i]);
});
if (typeof(cb) === 'function') cb(err, data);
}
Library.Item = function(opts) {
}
exports.client = Library.Client;
exports.list = Library.List;
exports.item = Library.Item;
然后你像这样使用这个库。
var client = new Library.client(opts);
client.createList();