django、apache 和 mod_wsgi 的类型错误问题

发布于 2024-10-27 00:59:49 字数 449 浏览 1 评论 0原文

我的 django 代码有这个问题。

TypeError at /conto/partitario/cerca/

unsupported operand type(s) for +: 'Decimal' and 'Decimal'

Request Method:     GET
Request URL:    http://myurl.com/cerca/
Exception Type:     TypeError
Exception Value:    

unsupported operand type(s) for +: 'Decimal' and 'Decimal'

在我的电脑上,这个错误从未出现过,但在生产服务器上,我经常在同一页面上出现此错误。 在服务器上,如果我重新加载或重新启动 apache,错误会消失 3/4 小时,然后又回来!

有什么想法吗?

谢谢!

I've this problem with my django code.

TypeError at /conto/partitario/cerca/

unsupported operand type(s) for +: 'Decimal' and 'Decimal'

Request Method:     GET
Request URL:    http://myurl.com/cerca/
Exception Type:     TypeError
Exception Value:    

unsupported operand type(s) for +: 'Decimal' and 'Decimal'

On my pc this error has never presented but on production server i've this error frequently on the same page.
On the server if i reload or restart apache the error disappear for 3/4 hours and then come back!!!

Any Idea??

Thanks!

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

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

发布评论

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

评论(1

梦境 2024-11-03 00:59:49

经过一番研究,我找到了关于这张票的提示 http://code.djangoproject.com/ticket/10933 我应用了这个补丁。四天来我的软件运行良好,但昨天错误又出现了!
这是我的代码:
莫维姆=

conto.movimentocont_set.filter(testata__data_registrazione__lte=data2,testata__data_registrazione__gte=data1).order_by('testata__data_registrazione')

                for mov in movim:

                    dare = dn(dare)  + dn(mov.dare)<----- error on this line????

After some research i find a tip on this ticket http://code.djangoproject.com/ticket/10933 and i apply this patch. For four days my software goes fine but yesterday the error come back!!!
Here my code:
movim =

conto.movimentocont_set.filter(testata__data_registrazione__lte=data2,testata__data_registrazione__gte=data1).order_by('testata__data_registrazione')

                for mov in movim:

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