gpt4 book ai didi

Python datetime 随机中断

转载 作者:太空宇宙 更新时间:2023-11-03 12:42:01 24 4
gpt4 key购买 nike

这不是我第一次遇到这种情况,所以现在我正在寻找答案,因为我完全被难住了。

我的代码现在已经在生产环境中运行了 3 个多月,它运行得非常好,然后突然间我开始在 python 中遇到错误。

'method_descriptor' object has no attribute 'today'

Exception Value:
'method_descriptor' object has no attribute 'today'
Exception Location: /admin/views/create.py in process, line 114

/admin/views/create.py in process
order = Orders(uid=0, accepted=0, canview='', files=0, date=datetime.date.today(), due=dueDate,

如您所见,我正在使用以下在 python shell 中运行良好的命令:

>>> import datetime
>>> datetime.date.today()
>>> datetime.date(2011, 9, 27)

最佳答案

您的代码正在某处导入 datetime.datetime,而不仅仅是 datetime,例如从日期时间导入日期时间

>>> import datetime
>>> datetime.datetime.date.today()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'method_descriptor' object has no attribute 'today'

关于Python datetime 随机中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7572690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com