从python代码将utc格式的日期分配给mongodb中的字段时出错
在我的 python 代码中,我有以下行,它将 UTC 格式的当前日期存储在 mongodb 数据库的字段中:
s['metadata']['some_date'] = datetime.utcnow()
但是在运行程序时,我收到以下错误:
类型错误:“unicode”对象不支持项目分配
我的代码有什么问题以及如何修复它?
请帮忙 谢谢
In my python code i have the following line which stores the current date in UTC format in a field in a mongodb database:
s['metadata']['some_date'] = datetime.utcnow()
But on running the program, i get the following error :
TypeError: 'unicode' object does not support item assignment
What is the wrong with my code and how to fix it ?
Please Help
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
's' 或 s['metadata'] 是一个字符串,但不是一个字典......pdb 是你的朋友。
Either 's' or s['metadata'] is a string but not a dict....pdb is your friend.