请求对象传递给Django-Tables2 Tables类

时间:2019-04-24 18:26:53

标签: python django django-tables2

让我们说我们有两个模型:ModelA和ModelB。

我将使用Django-Tables2从这些模型中创建一个表。

在tables.py中,您可以有两个单独的表类(如下)。

from .models import ModelA, ModelB
import django_tables2 as tables
class ModelATable(tables.Table):
    class Meta:
        #some basic parameters
        model = ModelA

        #the template we want to use
        template_name = 'django_tables2/bootstrap.html'

class ModelBTable(tables.Table):
    class Meta:
        #some basic parameters
        model = ModelB

        #the template we want to use
        template_name = 'django_tables2/bootstrap.html'

这意味着每个型号都有一个表格。但是,我认为更有效的编码解决方案将是针对以下方面。

class MasterTable(tables.Table, request):
    #where request is the HTML request
    letter = request.user.letter
    class Meta:
        #getting the correct model by doing some variable formatting
        temp_model = globals()[f'Model{letter}']

        #some basic parameters
        model = temp_model

        #the template we want to use
        template_name = 'django_tables2/bootstrap.html'

问题涉及从views.py在表定义中传递请求对象。看起来像这样:

def test_view(request):
    #table decleration with the request object passed through...
    table = MasterTable(ModelOutput.objects.all(), request)

    RequestConfig(request).configure(table)
    return render(request, 'some_html.html', {'table': table})

我不知道如何将变量(在这种情况下为请求对象)传递给类,以便可以进行变量格式化。

1 个答案:

答案 0 :(得分:1)

我认为您正在寻找table_factory。这将为您返回一个Table类,您可以使用它。 (还请注意,与使用全局变量相比,django.apps.apps.get_model是查找模型的更好方法。)

from django_tables2 import tables
from django.apps import apps

class BaseTable(tables.Table):
    class Meta:
        template_name = 'django_tables2/bootstrap.html'

def test_view(request):
    temp_model = apps.get_model('myapp', f'Model{request.user.letter}')
    MasterTable = tables.table_factory(temp_model, table=BaseTable)
    table = MasterTable(ModelOutput.objects.all())

    RequestConfig(request).configure(table)
    return render(request, 'some_html.html', {'table': table})