我正在使用ion auth with CI。什么是_render_page()
?我一直在使用$this->load()
并重定向。我收到了这个错误:
Fatal error: Call to undefined method Profile::_render_page()
我没有通过离子身份验证更改页面代码,所以我想我必须调用一些库或帮助程序,但我不知道哪一个。
答案 0 :(得分:3)
这是私有方法,在默认的auth ion_auth中使用,在你的控制器配置文件不存在这个功能,你可能只复制auth(登录/注销用户的方法)而忘了它..
默认Auth.php
function _render_page($view, $data=null, $render=false)
{
$this->viewdata = (empty($data)) ? $this->data: $data;
$view_html = $this->load->view($view, $this->viewdata, $render);
if (!$render) return $view_html;
}
在这里发布你的代码......现在这就像是成对烹饪一样