在视图中按值保存排序

时间:2011-12-15 03:03:57

标签: django django-templates django-views

我有一个包含a到f列的表格。

然后我有一个排序框,按重量,位置,眼睛颜色等对a到f列进行排序。

每个重量,位置,眼睛颜色等都具有起始值,例如,无。

现在,您可以将值更改为无,例如“50-100”,“韩国”,“Hazel”。

如果我想刷新页面,或者更改需要排序的列,我如何按值恢复为无值。

下面是模板代码的一个小例子:

<form action="" method="get">   
<div class="sort">
<ul>
  <li>
    <a>Sort By</a>
  </li>
</ul>    
<ul> 
  <li id="sample4" class="dropdown4">
    <a href="#">Location    | <span4>World Wide</span4></a>

      <ul><li><a href="#"><input type="radio" id="radio4" name="Location"  value="America"/><label for="radio4">America</label></a>
              <a href="#"><input type="radio" id="radio5" name="Location"  value="Zanzibar"/><label for="radio5">Zanzibar</label></a>
              <a href="#"><input type="radio" id="radio6" name="Location"  value="Aussie"/><label for="radio6">Aussie</label></a>
              <a href="#"><input type="radio" id="radio7" name="Location"  value="Disneyland"/><label for="radio7">Disneyland</label></a>
              <a href="#"><input type="radio" id="radio8" name="Location"  value="Someplace"/><label for="radio8">Someplace</label></a>
              <a href="#"><input type="radio" id="radio9" name="Location"  value="TheOcean"/><label for="radio9">The Ocean</label></a>
      </li></ul>
  </li>
</ul> 
etc.....

以及我观点的示例摘录

arguments = {}
if request.method == 'GET':
    sortlocation = request.POST.getlist('Location')
else:
    pass

if sortlocation == []:
    sortlocation = "World Wide"
else:
    sortlocation = sortlocation[0]             
    pass

if sortlocation is not "World Wide":
    arguments['Location'] = sortlocation
else:
    arguments['Location__isnull'] = False

1 个答案:

答案 0 :(得分:0)

您需要一种存储状态的方法。

最简单的方法是将该信息存储在session

request.session['sort'] = 'my_sort_value'

要在任何其他视图中检索它,请像字典一样访问它

sort = request.session.get('sort', None)