如何在django-tables2中添加计数器列?

时间:2016-06-08 06:38:43

标签: python django django-tables2

我正在尝试使用django-tables2在表的第一列添加计数器,但下面的解决方案只显示#列下的全部0。我应该如何添加一个列,该列具有对行进行编号的列?

tables.py:

import django_tables2 as tables
from profiles.models import Track
import itertools
counter = itertools.count()

class PlaylistTable(tables.Table):

    priority = tables.Column(verbose_name="#", default=next(counter))

    class Meta:
        model = Track
        attrs = {"class": "paleblue"}
        orderable = False
        fields = ('priority', 'artist', 'title')

我的模板:

{% render_table table %}

7 个答案:

答案 0 :(得分:3)

其他答案都在content: "\f00c"; 文件的顶级范围内有itertools.count个实例。这使计数器在页面加载之间保持不变,只有在重新启动服务器时才会重置。更好的解决方案是将计数器作为实例变量添加到表中,如下所示:

tables.py

这将确保每次实例化表时都会重置计数器。

答案 1 :(得分:2)

来自Column

的文档
  

<强> default (str or callable)

     

列的默认值。这可以是值或可调用对象[1]。如果数据中的对象为列提供None,则将使用默认值。

     

[1] - The provided callable object must not expect to receive any arguments.

你传递的是next(counter)你传递的函数的结果,它似乎是一个整数。

您可以定义一个函数:

def next_count():
    return next(counter)

并将其用作默认值:

priority = tables.Column(verbose_name="#", default=next_count)

或者,你可以使用@ Sayse评论中提到的lambda函数:

priority = tables.Column(verbose_name="#", default=lambda: next(counter))

答案 2 :(得分:1)

基于Jieter的答案,您可以通过以下较小的修改来处理分页:

import django_tables2 as tables
import itertools

class CountryTable(tables.Table):
    counter = tables.Column(empty_values=(), orderable=False)

    def render_counter(self):
        self.row_counter = getattr(self, 'row_counter',
                                   itertools.count(self.page.start_index()))
        return next(self.row_counter)

即使在第一个之后的页面中,行编号也将是全局正确的。请注意,在这种情况下,索引从1开始。

答案 3 :(得分:0)

在杰特的回答中, 在您的表类中,实现这些功能。 init 方法用于从视图类获取请求变量,以获取页码。 将render_id更改为render_yourcolumn名称。

class ClassName:
    def __init__(self, *args, **kwargs):
        self.request = kwargs.pop('request', None)
        super(ClassName, self).__init__(*args, **kwargs)

    def render_id(self):
        page = int(self.request.GET.get('page', 1)) - 1
        self.row_counter = getattr(self, 'row_counter', itertools.count(start=page*25+1)) # Change 25 to the number of rows in one page
        return next(self.row_counter)

现在,在视图文件中,将您的Table类称为:

table = ClassName(ModelName.objects.values(), request=request)

通过这种方法,您的计数器将正确显示n个页面。 :)

答案 4 :(得分:0)

遇到类似的问题,并且在没有重置每个页面上的计数器的情况下,找不到任何适用于分页表的简单解决方案

来自官方常见问题解答:How to create a row counter?(不支持分页)

使用已经可用的分页器属性: https://stackoverflow.com/a/9939938/3734484(类似一般的django方法)

import django_tables2 as tables

class NumberedTable(tables.Table):
    serial_column = tables.TemplateColumn(
        verbose_name='#',
        "{{ row_counter|add:table.page.start_index }}",

    )
   ...

答案 5 :(得分:0)

这是一种不专业的方法,无需使用 itertools 模块:

import django_tables2 as table

class GenericTable(table.Table):
    """GenericTable

    """
    counter = table.Column(
        verbose_name='#',
        orderable=False,
        accessor='pk',
    )

    def render_counter(self, record):
        """render_counter

        :param record: record
        :return: custom render
        """
        records = list(self.data)
        index = records.index(record)

        # counter = index  # counter starts from 0
        counter = index + 1  # counter starts from 1
        return counter

答案 6 :(得分:0)

来自Jieter答案

如果不想从零开始每个页面,则可以执行以下操作:

import django_tables2 as tables
import itertools

class CountryTable(tables.Table):
    counter = tables.Column(empty_values=(), orderable=False)

    def render_counter(self):
        self.row_counter = getattr(self, 'row_counter', itertools.count())
        return next(self.row_counter)+self.page.start_index()
        # self.page.sart_index() is default Table function and return number of start index per page