具有二进制数据字段的 MongoDB 节点驱动程序
我在 MongoDB 中有一系列带有较小二进制字段的记录。当我使用 mongodb-node 查询它并执行 console.log(my_record);
时,我会以明显的二进制形式看到记录。我想获取数据并将其转换为 Base 64,然后再发送回客户端。我尝试过 new Buffer(my_record.binary,'base64') ,但它抱怨参数错误。有什么想法吗?
I have a series of records in MongoDB with a smallish binary field. When I query it with mongodb-node and do console.log(my_record);
then I see the record just fine in apparent binary form. I want to get the data and convert it to base 64 before sending back to client. I've tried new Buffer(my_record.binary,'base64')
but it complains of bad argument. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须以二进制形式读取数据,并以 Base64 形式输出。我想,你必须做这样的事情:
You have to read the data in binary, and output it in base64. I guess, you have to do something of this sort: