0
mongodbで最大ID番号を見つけようとすると機能しません。私は何が欠けていますか?ここmongooseクエリでハンドルされていない 'error'イベント
は私のコードです:
router.get('/check', function(req, res, next) {
var query = news.find({}, {"id":1,"_id":0});
query.select('id');
query.exec(function (err, result) {
res.writeHead(200,{'Content-Type':'text/plain;charset=UTF-8'});
if(err) {
res.end(err);
};
res.end(result);
});
});
、ここではエラーです:
TypeError: First argument must be a string or Buffer
わかりましたので、あなたはありませんね。
events.js:160
throw er; // Unhandled 'error' event
^
TypeError: First argument must be a string or Buffer
at ServerResponse.OutgoingMessage.end (_http_outgoing.js:543:11)
at C:\Users\Romy\WebstormProjects\388-admin\routes\admin.js:44:13