cakephp truncate helper不工作

时间:2011-07-07 06:32:43

标签: cakephp cakephp-1.3

e.g。 (file = views/elements/photos/tag.ctp

在这个元素中,我必须显示有关该照片的描述。 我想截断描述文本,所以我使用截断 文本核心助手的功能,但这会抛出以下内容 例外

echo $this->Text->truncate($photo['Photo']['description'], 30,array(  'ending' => '...', 'exact' => false,'html' => true ));

Fatal error: Call to a member function truncate() on a non-object i

1 个答案:

答案 0 :(得分:4)

下次,请发布完整的错误消息。

看起来您没有在此处使用的控制器中包含帮助程序。

确保您的控制器中有以下内容:

var $helpers = array('Text');