2

I look an example of paginating from http://rapidprototype.ch/bg2docs/tg2pagination.html for my Turbogears 2 project and it works great but, I have a problem regarding my query parameters when I change the page I'm looking.

This is what I have in my controller when listing.

def list(self, page=1, **kw):
    q = ""

    if kw.has_key('q'):
        log.debug("searching %s" % kw)
        q = kw['q']

    if kw.has_key('all'):
        q = ""

    products = DBSession.query(model.Product).filter(
        or_(model.Product.name.like('%%%s%%' % q),
            model.Product.description.like('%%%s%%' % q),
            model.Product.model.like('%%%s%%' % q),
            model.Product.code.like('%%%s%%' % q))).all()

    def get_link(product):
        return Markup("""<a href="form?id=%s">%s</a>""" % (product.id, product.id))

    product_fields = [
        (Markup("""<a href="?s=id">Id</a>"""), get_link),
        (u'Name', 'name'),
        (u'Model', 'model'),
        (u'Code', 'code'),
        (u'Description', 'description')]

    product_grid = MyDataGrid(fields = product_fields)

    currentPage = paginate.Page(products, page, items_per_page=50)

    return dict(currentPage=currentPage, 
        title=u'Products List', item=u'product', items=u'products',
        data=currentPage.items, 
        grid=product_grid,
        page=u'Search %s results' % q,
        q=q,
        hits=len(products))

This is the html template fragment

<h1>List of ${items}</h1>
<form action="list" method="get">
   <input name="q" type="text" value="${value_of('q', default='')}"/>
   <input type="submit" value="Search"/> <input type="submit" name="all" value="All"/>
</form>
${hits} ${items} found
<p class="pagelist">${currentPage.pager(format='$link_first ~3~ $link_last')}</p>
<div>
  ${grid(data)}
</div>
<p><a href="${tg.url('form')}">Add a ${item}</a></p>

The searches works fine resulting in links like this '/list?q=cable' but when I click some of the paginating pages "1,2...8,9" turns to '/list?page=2'

How do I add my previous query parameter or any other parameters to the link?

4

3 に答える 3

1

次のような構文を使用する必要があります。

currentPage.kwargs['q'] = q

currentPage = paginate.Page(
                            products,
                            page,
                            items_per_page=50,
                            q = q
)
于 2009-10-19T08:48:11.703 に答える
1

しばらくシェルを試した後、解決策を見つけたと思います。

(paginate.Page から割り当てられた後) currentPage で定義された kwargs 辞書があるため、パラメーターを送信していくつかの実験を行ったところ、うまくいきました。こうやって。

currentPage = paginate.Page(products, page, items_per_page=50)

currentPage.kwargs['q'] = q

return dict(currentPage=currentPage, 
    title=u'Products List', item=u'product', items=u'products',
    data=currentPage.items, 
    grid=product_grid,
    page=u'Search %s results' % q,
    q=q,
    hits=len(products))

今、私はこの種のリンクを取得します: ' /list?q=cable&page=2 ' それが最善の解決策なのか、それともベストプラクティスなのか、まだ疑問に思っています

于 2009-10-05T04:45:13.837 に答える
0

このスニペットのように、リクエスト パラメータを更新できます。

def paginate(self, items, items_per_page=20):
    """https://bitbucket.org/bbangert/webhelpers/src/acfb17881c1c/webhelpers/paginate.py"""

    current_page = self.request.GET.get('page') or 1

    def page_url(page):
        params = self.request.params.copy()
        params['page'] = page
        return self.request.current_route_url(_query=params)

    return Page(collection=items, page=current_page, items_per_page=items_per_page, url=page_url)
于 2012-05-24T07:28:15.183 に答える