0

假设我有一个名为local_ads.

现在,当创建本地广告时,必须能够查看其预览,如果他满意,则将其保存。此外,如果一个人想要更新本地广告,那么他可能希望在覆盖记录的实时版本之前查看它的预览。

所以,我有一个local_ads表的外键叫做parent_id. 如果这是空的,那么它是一个预览(至少根据我最初的想法)。否则它是活的。保存预览时,有两种情况:

案例 1:尚未链接到预览的实时记录。在这种情况下,一条新记录被插入到local_ads表中,并parent_id指向预览。

案例 2:有一个链接到预览的实时记录。在这种情况下,实时记录被更新。

一切看起来都很好,但是我在网格中显示结果时遇到了问题。如果不存在记录的实时版本,我想显示预览,如果存在则只显示实时版本。我想展示一些本着

select col1, col2, col3, col4
from local_ads glob
where (not (parent_id is null)) 
or ((select id from local_ads temp where temp.parent_id = glob.id limit 0, 1) is null)

但我有几个问题。我们有一个逻辑or(我想知道如何or在逻辑操作数之间使用繁荣库的build方法fRecordSet)。另外,这个查询是二维的,速度很慢。另外,我想知道如何执行子查询。另外,我不知道如何is使用is null.

所以,我不得不重新考虑我的想法,我想出了以下几点:

select col1, col2, col3, col4
from local_ads
where parent_id < id or parent_id >= id

思路很简单:如果预览版没有live版本,则parent_id匹配id,否则预览版的parent_id为null。我知道这是一个丑陋的 hack,但这是我能想出的解决问题并降低内存和性能复杂性的最佳主意。

因此,剩下的唯一问题是检查 where 子句中由逻辑分隔的两个逻辑值or

从文档中我看到了这个:

 * 'column<:'                   => 'other_column'               // column < other_column

和这个:

 * 'column>=:'                  => 'other_column'               // column >= other_column

所以我知道如何将这些添加到过滤器中,但是我应该如何“或”它们呢?

到目前为止,我已经尝试过这种方式:

public static function localAd() {
    $User = Globe::load('CurrentUser');

    $Smarty = Globe::load('Smarty');

    //handle default options
    $options = array(
        'recordsPerPage' => 20,
        'pageLinks' => 10,
    );

    $page = 0;

    if (isset($_GET['p'])) {
        $page = $_GET['p'];
    }

    //get the data
    $startIndex = (isset($page)) ? $page * $options['recordsPerPage'] : 0;

    $filters = array();

    if ($User->getType() == 'local_admin') {
        $filters['domain='] = $User->getDomain();
    }

    $records = fRecordSet::build('LocalAd', $filters, array('created' => 'desc'), $options['recordsPerPage'], $page + 1);

    //create result object for pagination
    $Result = array(
        "recordsReturned" => $records->count(),
        "totalRecords" => $records->count(true),
        "startIndex" => intval($startIndex),
        "records" => $records->export(),
        'recordsPerPage' => $options['recordsPerPage'],
        'pageLinks' => $options['pageLinks'],
        'currentPage' => $page,
            //'options' => $options
    );

    $Result['totalPages'] = ceil($Result['totalRecords'] / $Result['recordsPerPage']);

    $Smarty->assign('Result', $Result);
    $Smarty->assign('ManagerURL', '?a=localAd');

    AdminView::display('Admin/LocalAd/main.tpl');
}

请注意,在某些情况下,我还必须检查域。

4

1 回答 1

0

与此同时,我已经设法解决了这个问题。这就是我们如何定义过滤器集来解决问题中提到的问题:

$filters = array();

if ($User->getType() == 'local_admin') {
  $filters['domain='] = $User->getDomain();
}

$filters['parent_id<:|parent_id>=:'] = array('id', 'id');
于 2013-12-15T05:47:44.183 回答