0

我有这段代码,用于生成分类为年份、品牌、系列、车身样式和车辆颜色的记录列表。我想以这种方式进一步自定义:

  • 对于这一年,我只想到 2004 年是个人……其余的将属于其他,即 2009、2008、2007、2006、2005、2004、其他。
  • 对于品牌,我想显示人气最高的六个品牌……我正在使用模型中的一个字段来指定品牌的知名度,其值为主要(最高)、次要或第三。其余的将属于其他。
  • 对于车身样式和颜色,我希望拥有少于 3 条记录的项目属于其他。

我的代码如下:

year_count = vehicle_query.order_by(
  '-common_vehicle__year__year').values('common_vehicle__year__year').
  annotate(count=Count('id'))
make_count = vehicle_query.order_by(
  'common_vehicle__series__model__manufacturer__manufacturer').
  values('common_vehicle__series__model__manufacturer__manufacturer').
  annotate(count=Count('id'))
style_count = vehicle_query.order_by(
  'common_vehicle__body_style__style').values
  ('common_vehicle__body_style__style').annotate(count=Count('id'))
colour_count = vehicle_query.order_by(
  'exterior_colour__exterior_colour').values(
  'exterior_colour__exterior_colour').annotate(count=Count('id'))
4

2 回答 2

0

您要问的大部分内容可能最好在 Django 之外处理,而不是由客户端 javascript 处理。需要明确的是,您可以让 Django 处理部分,但不这样做会更干净。这样做有以下好处:

  1. 你的 Django 模板代码更干净
  2. 它会很好地退化
  3. 您可以稍后更新界面(更改 javascript),而不必担心破坏 Django 模板

要处理这个问题,您可以简单地制作一个脚本,当给定一个<ul>标签(可能还有一些参数)时,它将以您询问的格式呈现该列表。

这是一个使用 jQuery 的简单示例。对于此示例,我将使用 jQuery 插件模式包装功能。

假设您的 django 模板输出以下内容...

<ul>
    <li>Chevy</li>
    <li>Mazda</li>
    <li>Honda</li>
    <li>Ford</li>
    <li>BMW</li>
</ul>

jquery.showmorelist.js

(function($) {

    $.fn.ShowMoreList = function(visibleItemCount) {

        // Wrap parent element
        var parent = $(this).wrap('<div class="show-more-list"></div>').parent();
        var ul = $(this);

        // Enumerate children and hide extras
        var counter = 0;
        $(this).children().filter('li').each(function(){
            counter += 1;
            if (counter > visibleItemCount) {
                $(this).hide();
                $(this).addClass('hidden');
            }
        });

        // Add link and bind click
        var link = $('<a href="#">&gt; Show More</a>').click(function(){
           $(ul).children().filter('.hidden').show();
        });
        $(parent).append(link);
    }

})(jQuery);

page.html

<script type="text/javascript" src="jquery.showmorelist.js"></script>
<script type="text/javascript">
    // On page load...
    $(function() {
            $('ul').ShowMoreList(4);    // Shows only the first 4 items
    });
</script>

这是一个相当简单的示例,它不会将“显示更多”切换为“隐藏更多”,但您应该能够从上下文中弄清楚这一点。

于 2009-11-30T20:13:41.603 回答
0

我设法得到了一个解决方案,所以我认为在这里更新答案会很好:

在头部我有这个:

<script type="text/javascript" src="{{ MEDIA_URL }}share/jquery/jquery.min.js"></SCRIPT>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
    //hide the additional content under "Display More"
    $("div.additional_content").hide();

    $("a.more").click(function () { 
        //show or hide the additional content
        $(this).siblings("div.additional_content").toggle();
        //change the attributes and text value of the link toggle
        if($(this).text() == "Display Less"){
            $(this).removeClass("less");
            $(this).addClass("more");
            $(this).html("Display More");
        }else{
            $(this).removeClass("more");
            $(this).addClass("less");
            $(this).html("Display Less");
        }
        return false;
    });             
});
})(jQuery);

然后,无论我想减少可用选项的数量,我都有这个:

<div class="module_wrap">
  <div class="module"> {% if year_count %} <strong>{% trans "Year" %}</strong> <br />
    {% for item in year_count|slice:":6" %}
    <ul>
      <li> <a href="/inventory/year/{{ item.common_vehicle__year__year }}/">{{ item.common_vehicle__year__year }} ({{ item.count }})</a> {% if request.session.chosen_year %} <a href="/undo_year/"><img src="{{ MEDIA_URL }}img/undo.gif" border="0" alt="Remove Year Filter" title="Remove Year Filter" /></a> {% endif %} </li>
    </ul>
    {% endfor %}
    <div class="additional_content"> {% for item in year_count|slice:"6:" %}
      <ul>
        <li> <a href="/inventory/year/{{ item.common_vehicle__year__year }}/">{{ item.common_vehicle__year__year }} ({{ item.count }})</a></li>
      </ul>
      {% endfor %} </div>
    {% if year_count|slice:"6:" %}<a href="" class="more">Display More</a><br />
    {% endif %} <br />
  </div>
</div>
{% endif %}
于 2009-12-03T05:51:24.797 回答