django中的分页功能不正常

时间:2013-10-01 09:37:37

标签: python django error-handling pagination

我有一个根据日期提交表单的代码。每当我在formit上使用分页时都会显示错误

"Key 'userchoice' not found in <QueryDict: {}>"

分页限制数据正确显示,但是当我点击“下一步”时,它会显示错误。

这是我到目前为止所得到的:

views.py: -

def testeruser(request):
    getchoice = request.POST['userchoice']
    getfirstdate = request.POST['firstdate']
    getseconddate = request.POST['seconddate']
#   getfirstdate = '2013-09-25'
#   getseconddate = '2013-09-26'

    if getchoice == '0':
        getdata = applicationform.objects.filter(date__gte=getfirstdate , date__lte=getseconddate)
        ##### PAGINATION
        searchpagination = Paginator(getdata ,3)
        page=request.GET.get('searchpage')
        try:
            searchcontacts = searchpagination.page(page)
        except PageNotAnInteger:
            searchcontacts = searchpagination.page(1)
        except EmptyPage:
            searchcontacts = searchpagination.page(searchpagination.num_pages)  

        if getdata:
            return render_to_response('registration/search_page.html', {'getdata':getdata ,'getchoice':getchoice ,'searchcontacts': searchcontacts})    
        else:
            return HttpResponse('NO ITEMS FOUND ON THIS DATE')
自定义模板中的

: -

<form method="POST" action="/testeruser/" class="form-horizontal"  name="searchform" enctype="multipart/form-data" >{% csrf_token %}
                <select name="userchoice" id="client_specification" class="span2"  required>                                                                    <option value='-1'>Select Your Choice </option>
                                                                <option value='0'>Biddings</option>
                                                                <option value='1'>Interviews</option>
                                                                <option value='2'>Jobs</option>
                </select>
               From: <input type="text"  class="input-xlarge" name="firstdate" id="search1" readonly="readonly" />  
                           To: <input type="text"  class="input-xlarge" name="seconddate" id="search2" readonly="readonly"/> </span>
                          <button class="btn btn-gebo" type="submit" name="asubmit" >Submit</button>
                              </form>       

    <!------------ PAGINATION---------------->
                        <div class="pagination"> 
                            <ul>    {% if searchcontacts.has_previous %}
                                <li><a href="?searchpage={{ searchcontacts.previous_page_number }}">PREVIOUS</a></li>
                {% endif %}

                {% if searchcontacts.has_next %}    
                                <li><a href="?searchpage={{ searchcontacts.next_page_number }}">NEXT</a></li>
                {% endif %} 
                            </ul>       
                        </div>
    <!------------ PAGINATION---------------->

1 个答案:

答案 0 :(得分:2)

Django中的分页工作正常,这是你的代码问题。

出于某种原因,您使用POST发送原始搜索变量,然后创建只使用页码进行GET的分页链接。当然,Django无法知道您以前的搜索条件是什么,因为您没有在POST数据中发送它们 - 因此错误。

执行此操作的常规方法是通过GET发送原始搜索请求 - 这是最佳做法,因为搜索不会修改数据。然后在所有分页链接上包含相同的变量,只需替换页码。