使用KnpPaginatorBundle创建和检索可排序选项列表

时间:2014-11-25 19:02:31

标签: php symfony knppaginator

我想和KnpPaginatorBundle一起检索可排序的选项列表,但我失败了。 这是形式:

       <form action="" method="get" class="form_sort" id="myForm">
           <span class="manage_title">Sort by:</span>
                <select class="select_styled white_select" id="sort_list" name="option" onChange="sendForm();">
                     <option value="">-------</option>
        {{ knp_pagination_sortable(pagination, 'Country A-Z', 'country', {'sort': 'country', 'direction': 'asc'}) }}
        {{ knp_pagination_sortable(pagination, 'Country Z-Z', 'country', {'sort': 'country', 'direction': 'desc'}) }}
                 </select>
       </form>   

这是KnpPaginatorBundle \ Pagination \ sortable_option.html.twig中的视图

<option {% for attr, value in options %} {{ attr }}="{{ value }}"{% endfor %}>{{ title }}</option>

这就是行动:

    public function listAction($page, Request $request)
{
    $em = $this->getDoctrine()->getManager();

    $paginator  = $this->get('knp_paginator');

    if ($request->getMethod() == 'POST')
    {

        $option = $request->query->get('option'); //get query option
        list($directiuon, $sort) = explode(":", $option);

        $listTravels = $em->getRepository('ProjectTravelBundle:Travel')->getListTravelsFrontend($sort, $direction);

        $pagination = $paginator->paginate(
            $listTravels,
            $this->get('request')->query->get('page', $page)/*page number*/,
            5/*limit per page*/
        );

        return $this->render('ProjectFrontendBundle:Frontend:list.html.twig',array(
            'pagination' => $pagination
        ));
    }

    $listTravels = $em->getRepository('ProjectTravelBundle:Travel')->findAll();

    $pagination = $paginator->paginate(
        $listTravels,
        $this->get('request')->query->get('page', $page)/*page number*/,
        5/*limit per page*/
    );

    return $this->render('ProjectFrontendBundle:Frontend:list.html.twig',array(
        'pagination' => $pagination
    ));
}

我想知道如何在 sort = country和direction = asc 的表单中正确创建选项,以及第二个选项 sort = country and direction = desc ,我也希望在 POST 之后在控制器中检索这些参数,并纠正操作中的错误(接近爆炸)。

现在,当我选择第一个选项时,我得到这个网址:

http://localhost/agence/web/app_dev.php/travels?option=Country+A-Z

1 个答案:

答案 0 :(得分:1)

这是因为你发送了表格,我在你之前的问题中给你写了一篇JS:

  • 获取例如所选选项的值。本地主机/通讯社/网络/ app_dev.php /行进排序全国=&安培;方向=降序

  • 重定向到您从值中检索到的页面。

我认为它也可能无效,因为KNPPaginator默认模板是一个链接,所以代替href =&#34; KNP_LINK&#34;需要重视=&#34; KNP_LINK&#34;。修改文件

KnpPaginatorBundle \ Pagination \ sortable_option.html.twig