将非 ascii 字符保存到 mongo db 时出现 UnicodeDecodeError

发布于 2024-11-05 15:32:02 字数 135 浏览 0 评论 0原文

将 mongoengine 与 mongodb 一起使用 保存具有非 ascii 字符值的文档时出现 UnicodeDecodeError (mongoengine 用 unicode() 调用包装值)
有什么办法处理呢?

Using mongoengine with mongodb
when saving document which has value with non ascii character got UnicodeDecodeError (mongoengine wraps values with unicode() call)
what's the way to deal with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

剧终人散尽 2024-11-12 15:32:02

如果您正在调用 unicode(),您应该提供字符串的编码方式,以便 unicode() 函数知道如何转换数据。例如:

v = "myvalüe"
u = unicode(v, 'utf-8')

If you are calling unicode() you should provide the encoding your string is encoded in, so that the unicode() function knows how to convert the data. For example:

v = "myvalüe"
u = unicode(v, 'utf-8')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文