我希望能够预测<jdoc:include type="component" />
何时没有返回任何内容。
这样的事情:
<?php if( count(<jdoc:include type="component" />)>=1 ) : ?>
<jdoc:include type="component" />
<?php else :?>
Sorry No Content
<?php endif ; ?>
搜索到所有内容,但找不到任何与之相关的内容。对不起,如果这是补救措施。
答案 0 :(得分:0)
我有这个片段用于测试组件加载错误...不确定是否可能适合你
<?php if ($this->getBuffer('message')) : ?>
<div class="error">
<h2> Message </h2>
<jdoc:include type="message" />
</div>
<?php endif; ?>
<jdoc:include type="component" />
祝你好运!