0

在下面的模型中,我想计算使用 hitcount 模块检索对象的次数。

class Stats(models.Model, HitCountMixin):
    user = models.ForeignKey("User", null=True, blank=True, on_delete=models.CASCADE)
    count = models.PositiveIntegerField(default=0)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)
    hit_count_generic =GenericRelation(HitCount, object_id_field='object_pk', related_query_name='hit_count_generic_relation')

我没有任何检索对象的view函数(基于类或基于函数) 。我只使用get_or_create方法来更新或创建模型对象。

那么我如何使用hit_count.hits_in_last返回今天的点击数

4

0 回答 0