Django / Python 计算

发布于 2024-10-15 09:40:38 字数 363 浏览 3 评论 0原文

我正在构建一个小项目,允许用户获得项目资金。

一个项目有一个名为“amount_raised”的字段,它可能包含一个整数,例如“123.34”,

当通过 paypal 成功付款时,您会收到 ipn_obj,其中包含一些财务信息,即 ipn_obj.mc_gross 可能是“10.23”,

我如何在 django 中执行计算以获得其总值?

这是我第一次在 django 中处理计算,所以请耐心等待。

如果我尝试将它们转换为整数,我会收到错误 invalidliteral for int() with base 10

非常感谢您的帮助。

I am building a small project that allows a user to get funding for a project.

A project has a field called "amount_raised" that might house an integer such as "123.34"

when a successful payment is done through paypal you receive the ipn_obj of which one contains some financial info, i.e. ipn_obj.mc_gross which might be "10.23"

how do I perform a calculation in django to get the total value of that?

It's the first time I have dealt with calculations in django so bear with me.

If I try converting them to integers I get an error invalid literal for int() with base 10

Your help is much appreciated.

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

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

发布评论

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

评论(1

明媚殇 2024-10-22 09:40:38

像 123.45 这样的数字不是整数。您需要的是 DecimalField。用法示例:

models.DecimalField(..., max_digits=5,decimal_places=2)

A number like 123.45 is not an integer. What you need is a DecimalField. Example usage:

models.DecimalField(..., max_digits=5, decimal_places=2)

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