nedb にデータを書き込みたい koa ベースのアプリがあります。問題は、次の短いスニペットに示されています。
app.use(router.get('/', function*(){
db.insert(doc, function(err,data){
// can't yield here because the callback is not a generator
}
}));
https://github.com/tj/node-thunkifyのドキュメントに従って、thunkify で次のことを試しました。
var insert = thunkify(db.insert);
app.use(router.get('/', function* (){
yield insert(doc)
}))
しかし、次のエラーが表示されます
TypeError: Cannot read property 'push' of undefined
at Datastore.insert (/home/app/node_modules/nedb/lib/datastore.js:374:16)
at Object.<anonymous> (/home/app/node_modules/thunkify/index.js:43:12)
at /home/app/node_modules/koa/node_modules/co/index.js:136:8
at Object.thunkToPromise (/home/app/node_modules/koa/node_modules/co/index.js:13
どんな助けでも大歓迎です。