1

我是modx世界的菜鸟。我有一个带有子页面的页面,我使用 getResources 在父页面的选项卡中显示这些内容。

我想做的只是在父页面有子页面时才显示该块?

所以像这样,但这显然是不对的,因为它不起作用。

[[!getResources &parent:notempty=`[[$chunk]]`]]  
4

2 回答 2

0

它是 &parents ,带有“s”。

无论如何,如果您想对片段使用输出过滤器,请将其添加到问号之前:

[[!getResources:isempty=`No content is available`? &parents =`[[*id]]`]]
于 2013-08-10T07:52:46.153 回答
0

试一试,为此创建一个新的片段;

<?php
// get the current resource id
$id =  $modx->resource->get('id');

// get the resource object
$resource = $modx->getObject('modResource', $docId);

// make sure we have a resource
if($resource){

    // see if the resource has children
    $hasChildren = $resource->hasChildren();

    if($hasChildren){ // pretty sure hasChildren returns 1 or 0

        // optionally, retrieve the chunk & populate it.
        // replace your-chunk-name and the placeholders with your values. 
        $output = $modx->getChunk('your-chunk-name',array(

            'placeholder-1-name' => 'value',
            'placeholder-2-name' => 'value',
            'placeholder-3-name' => 'value',
            'placeholder-4-name' => 'value',

        ));

        return $output; 

    }

}

return true;
于 2013-08-06T17:46:24.673 回答