通过 websockets 接收 JSON 数据时,我试图将这些数据输入到流星中的 mongodb 中。我得到的 JSON 数据很好,但是当试图查找数据库中是否已经存在数据时,我不断收到错误消息:“['Parse error: Can\'t wait without a fiber']'。
binance.websockets.miniTicker(markets => {
//we've got the live information from binance
if (db.Coins.find({}).count() === 0) {
//if there's nothing in the database right now
markets.forEach(function(coin) {
//for each coin in the JSON file, create a new document
db.Coins.insert(coin);
});
}
});
谁能指出我正确的方向来解决这个问题?
非常感谢,鲁弗斯