具有二进制数据字段的 MongoDB 节点驱动程序

发布于 2024-12-12 18:35:52 字数 207 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

比忠 2024-12-19 18:35:52

您必须以二进制形式读取数据,并以 Base64 形式输出。我想,你必须做这样的事情:

buffer = new Buffer(my_record.binary,'binary')
hex = buffer.toString('base64')

You have to read the data in binary, and output it in base64. I guess, you have to do something of this sort:

buffer = new Buffer(my_record.binary,'binary')
hex = buffer.toString('base64')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文