使用 Django 获取每个月的总计
我有一个这样的模型:
class Sales(models.Model):
item = models.CharField(max_length=40)
date_sold = models.DateTimeField()
我想展示特定年份每月销售的商品总数的条形图。我的图表软件需要一个如下所示的列表,其中每个数字都是特定月份销售的商品总数。
sales_by_month = [4, 6, 7, 3, 5. ...]
我该怎么做?
我有一种感觉,我应该使用日期、聚合和/或注释,但无法解决。
我正在使用 SQLite,但计划使用 PostgreSQL。
我在另一个使用 ruby on Rails 的项目中做到了这一点,据我所知,这非常简单,所以我希望 Django 有一个很好的解决方案。
I have a model like this:
class Sales(models.Model):
item = models.CharField(max_length=40)
date_sold = models.DateTimeField()
I'd like to present a bar chart of total items sold each month for a particular year. My charting software expects a list like the one below where each number is the total items sold for a particular month.
sales_by_month = [4, 6, 7, 3, 5. ...]
How would I do this?
I've got a feeling I should be using dates, aggregate
and/or annotate
, but can't work it out.
I'm using SQLite, but plan to go to PostgreSQL.
I did this in another project using ruby on rails and it was pretty straightforward as far as I remember, so I'm hoping Django has a good solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常对于这样的事情,下面的代码应该可以工作。
但是您有一个日期时间字段,而不仅仅是每个项目的月份。您可以尝试执行以下操作,尽管我怀疑它是否有效。
另一种选择是尝试使用 extra() ,如该 线程所示。因此,如果您使用 MySql,您可以尝试类似的操作。
Usually for something like this the code below should work.
But you have a dateTime field, and not just the month for each item. You could try doing the following, though I doubt it will work.
The other option would be to try using extra() as shown in this thread. You could therefore try something like this if you are using MySql.
使用 django-qsstats-magic:
using django-qsstats-magic: