请给我一个解决方案 致命错误:调用成员函数在第17行的D:\ xampp \ htdocs \ blog \ app \ views \ layouts \ default.ctp中的非对象上写入Buffer()
答案 0 :(得分:11)
在类声明后检查控制器中是否有以下行:
public $helpers = array('Js');
或者使布局中的代码更具弹性编辑views\layouts\default.ctp
并使用以下内容编写JsHelper缓冲区的内容:
<?php
if (class_exists('JsHelper') && method_exists($this->Js, 'writeBuffer')) echo $this->Js->writeBuffer(); ?>