自定义分页器/ formfilter/ buildquery 不会将过滤器数据处理为查询

发布于 2024-11-09 16:36:16 字数 1152 浏览 3 评论 0原文

我有一个操作需要使用表单过滤器、分页器和特定的表方法:

$this->filterForm = new OrganisationFormFilter();
$this->filterForm->setTableMethod('retrieveMemberOrganisations');
$this->filterForm->bind($searchParams);
$v = $this->filterForm->getValues();
$q = $this->filterForm->buildQuery($v);

$this->pager = new sfDoctrinePager('Organisation', 50);
$this->pager->setQuery($q->orderBy(implode(' ',$this->getSort())));
$this->pager->setPage($request->getParameter('page',1));
$this->pager->init();

public function retrieveMemberOrganisations(Doctrine_Query $q){

    $rootAlias = $q->getRootAlias();
    $q->
    select("$rootAlias.*")->
    addSelect('m.id, sc.id, cat.id, cat.number_key')->
    innerJoin ("$rootAlias.CurrentMember c")->
    innerJoin ("$rootAlias.Membership m")->
    innerJoin ('m.LatestMembership lm')->
    innerJoin ('m.MembershipSubcategory sc')->
    innerJoin ('sc.MembershipCategory cat');

    return $q;

}

问题是过滤器设置根本没有被处理。我已经检查了 $v 中的值是否已设置,但它们似乎没有反映在 $q 中。此外,当我在进入retrieveMemberOrganizations 时使用调试器停止时,$q 也不限制过滤器设置。这是我使用的代码的正确顺序吗?

I have an action requiring to use a formfilter, pager and a specific table method:

$this->filterForm = new OrganisationFormFilter();
$this->filterForm->setTableMethod('retrieveMemberOrganisations');
$this->filterForm->bind($searchParams);
$v = $this->filterForm->getValues();
$q = $this->filterForm->buildQuery($v);

$this->pager = new sfDoctrinePager('Organisation', 50);
$this->pager->setQuery($q->orderBy(implode(' ',$this->getSort())));
$this->pager->setPage($request->getParameter('page',1));
$this->pager->init();

public function retrieveMemberOrganisations(Doctrine_Query $q){

    $rootAlias = $q->getRootAlias();
    $q->
    select("$rootAlias.*")->
    addSelect('m.id, sc.id, cat.id, cat.number_key')->
    innerJoin ("$rootAlias.CurrentMember c")->
    innerJoin ("$rootAlias.Membership m")->
    innerJoin ('m.LatestMembership lm')->
    innerJoin ('m.MembershipSubcategory sc')->
    innerJoin ('sc.MembershipCategory cat');

    return $q;

}

Problem is that the filter settings are not processed at all. I have checked that values in $v are set, but they don't seem to be reflected in $q. Also when I stop with a debugger on entry to retrieveMemberOrganisations, $q doesnt contrain the filter settings either. Is this the right order of code that I'm using?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻身的咸鱼 2024-11-16 16:36:16

我实际上正在使用 formFilter 来做类似的事情。 而是使用

$q = $this->filterForm->buildQuery($v);

use ,但认为这应该可行。

$q = $this->filterForm->getQuery();

我没有使用 setTableMethod 方法,

I'm actually using the formFilter to do something like that. Instead of using

$q = $this->filterForm->buildQuery($v);

use

$q = $this->filterForm->getQuery();

I'm not using the setTableMethod method, but think that should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文