将非 ascii 字符保存到 mongo db 时出现 UnicodeDecodeError
将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在调用
unicode()
,您应该提供字符串的编码方式,以便unicode()
函数知道如何转换数据。例如:If you are calling
unicode()
you should provide the encoding your string is encoded in, so that theunicode()
function knows how to convert the data. For example: