Cake PHP:Element内部的HTML Helper不起作用

时间:2013-10-14 19:25:00

标签: php html cakephp helper

我拨打电话,例如:$ this-> element('stories'),以便在多个页面中显示名为“stories”的元素的内容。当我在元素中使用html助手时,我收到以下错误:缺少助手错误:找不到htmlHelper。

注意:我正在使用CakePHP 2.4

由于

1 个答案:

答案 0 :(得分:1)

您可以使用html帮助器,如..

<?php 
   // not echo $html->link('text', 'url'); 
   // not echo $this->html->link('text', 'url'); 
   echo $this->Html->link('text', 'url'); 
?>

请检查您的代码。请查看documentation