我有困難的時候附加新標準對現有網址分頁
說,在追加新的標準,以實際的搜索網址,我有這個網址後搜索提交:
/found_items/?state=bla&score=bla
,並在結果頁面,我有一個paginator,我希望如果你點擊next
按鈕,上面的url應該保留,並且新的?page=number
應該被追加到這個url。
<a href="?page={{ locs.next_page_number }}">next</a>
什麼是現在發生的事情是,/found_items/?state=bla&score=bla
正在消失,成爲 /?page=number
。
我想這一點:/found_items/?state=bla&score=bla&page=numer
我怎麼能做到這一點?
的可能重複http://stackoverflow.com/questions/4293460/how-to-add-custom-parameters-to-an-url-query-string-with -python – plalx 2013-05-04 15:36:41
and [http://stackoverflow.com/questions/2047622/how-to-paginate-django-with-other-get-variables](http://stackoverflow.com/questions/2047622/how-to- paginate-django-with-other-get-variables) – 2013-05-04 15:42:39