cakephp 在日期之间搜索和分页

发布于 2024-11-10 01:18:40 字数 786 浏览 0 评论 0 原文

我正在尝试修改此代码以在我的应用程序中实现搜索 http://mrphp.com.au/code/search-forms-cakephp

代码有效,但我试图按日期添加过滤器

,但该过滤器不起作用...

这是我的代码

    if(isset($this->passedArgs['Search.data1']) ) {
    $data1=$this->passedArgs['Search.data1'];
    $this->log($data1,LOG_DEBUG);

    if(isset($this->passedArgs['Search.data2']) ) {
        $data2=$this->passedArgs['Search.data2'];
    }
        else {
        $data2=$this->passedArgs['Search.data1'];

    }

    $this->paginate['conditions'][] = array('Report.data BETWEEN ? AND ?' => array($data1,$data2));

}

url 就像index/Search.data1:2011-05-19/Search.data2:2011 -05-26

有什么想法吗?

谢谢

I'm trying to modify this code to implement a search in my application
http://mrphp.com.au/code/search-forms-cakephp

the code work but I'm trying to add a filter by date

and this filter doesn't work...

this is my code

    if(isset($this->passedArgs['Search.data1']) ) {
    $data1=$this->passedArgs['Search.data1'];
    $this->log($data1,LOG_DEBUG);

    if(isset($this->passedArgs['Search.data2']) ) {
        $data2=$this->passedArgs['Search.data2'];
    }
        else {
        $data2=$this->passedArgs['Search.data1'];

    }

    $this->paginate['conditions'][] = array('Report.data BETWEEN ? AND ?' => array($data1,$data2));

}

the url is like index/Search.data1:2011-05-19/Search.data2:2011-05-26

any ideas?

thanks

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

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

发布评论

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

评论(1

墨离汐 2024-11-17 01:18:40

尝试改变你的分页条件:

$this->paginate['Report']['conditions'] = array("Report.data BETWEEN '$data1' AND '$data2'");

这应该有效。

Try changing your paginate conditions:

$this->paginate['Report']['conditions'] = array("Report.data BETWEEN '$data1' AND '$data2'");

That should work.

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