0

我的模板中有很多这样的代码:

  <h2>Owners of old cars</h2>
    <table id="hor-minimalist-b" summary="Old Cars">
    <thead>
        <tr>
            <th scope="col">Name</th>
            <th scope="col">Age</th>
            <th scope="col">Address</th>
        </tr>
    </thead>
    <tbody>
    {% for result in old_cars %}
        <tr>
            <td>{{result.name}}</td>
            <td>{{result.age}}</td>
            <td>{{result.address}}</td>
        </tr>
    {% endfor %}
    </tbody>
    </table>      

    <h2>Owners of Ford cars</h2>
    <table id="hor-minimalist-b" summary="Old Cars">
    <thead>
        <tr>
            <th scope="col">Name</th>
            <th scope="col">Age</th>
            <th scope="col">Address</th>
        </tr>
    </thead>
    <tbody>
    {% for result in ford_cars %}
        <tr>
            <td>{{result.name}}</td>
            <td>{{result.age}}</td>
            <td>{{result.address}}</td>
        </tr>
    {% endfor %}
    </tbody>
    </table>

将会有更多像上面那样创建的表。如您所见,有很多重复的代码。无论如何要这样做,所以每次创建表时我都不会重复那么多代码?谢谢。

更新

我正在考虑创建一个名为 table 的新对象,并为其添加一个结果和相应的 h2 标题。然后我可以创建这些表对象的列表,称为表,我可以将其传递给模板。然后模板可以遍历它们。

4

2 回答 2

3

当然,理想情况下,您想要的是:

{% for car in cars %}
<h2>Owners of {{ car.manufacturer }}</h2>
<table id="hor-minimalist-b" summary="Old Cars">
<thead>
    <tr>
        <th scope="col">Name</th>
        <th scope="col">Age</th>
        <th scope="col">Address</th>
    </tr>
</thead>
<tbody>
    {% for model in car.models %}
    <tr>
        <td>{{model.name}}</td>
        <td>{{model.age}}</td>
        <td>{{model.address}}</td>
    </tr>
    {% endfor %}
</tbody>
</table>
{% endfor %}

我不确定您使用的是什么 ORM,但在 Django 中构建起来并不难;毕竟,您传入的只是带有子对象和字段的对象列表。

同样,我只能从 django 的角度谈(从您自己的 ORM 构建),但是您可以故意为每种类型的制造商构建带有明确请求的字典,或者更确切地说,有一个“销售”模型和一个“制造商”模型"并在两者之间构建多对多的关系。在 django python 中,您的查询大致如下所示:

result = []
manufacturers = Manufacturer.objects.all() # get all manuf
for m in manufacturer:
    mf = dict()
    mf["manufacturer"] = m.name
    mf["models"] = m.model_set.all() # get all linked models
    result.append(mf)
# pass result to template as cars

那有意义吗?

于 2011-01-29T10:30:03.030 回答
0

为表格的页眉和页脚使用模板

<table id="hor-minimalist-b" summary="Old Cars">
<thead>
    <tr>
        <th scope="col">Name</th>
        <th scope="col">Age</th>
        <th scope="col">Address</th>
    </tr>
</thead>
<tbody>

将其放入名为“table_header.html”的文件中,并将其包含在您的模板中。页脚也是如此!

于 2011-01-29T10:27:01.800 回答