从python代码将utc格式的日期分配给mongodb中的字段时出错

发布于 2024-11-26 06:56:22 字数 264 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

不必你懂 2024-12-03 06:56:22

's' 或 s['metadata'] 是一个字符串,但不是一个字典......pdb 是你的朋友。

Either 's' or s['metadata'] is a string but not a dict....pdb is your friend.

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