CI 不返回视图缓冲区

发布于 2024-10-21 05:09:33 字数 446 浏览 1 评论 0原文

我的问题是,当我加载视图文件时,它会将其直接发送到浏览器而不是返回它:

$output=$this->load->view('topic', $data, TRUE); 

我有两个控制器。每个控制器在扩展 CI_Controller 之前都会扩展另一个控制器,例如:

topics_admin extends Backend(which extends CI_controller) 

topics extends Frontend (which extends CI_controller)

第一个控制器的行为符合预期,但第二个控制器存在我已经解释过的问题。 2 个前端和前端之间没有重大区别。后端控制器。

我正在使用 CI 2,但我还没有触及核心类。

有什么问题吗?

My problem is when I load a view file, it sends it directly to the browser instead of returning it:

$output=$this->load->view('topic', $data, TRUE); 

I’ve two controllers. Each controller extend another controller before it extend the CI_Controller such as :

topics_admin extends Backend(which extends CI_controller) 

topics extends Frontend (which extends CI_controller)

The first controller behaves as expected but the second one has the problem i’ve explained.
There are no major differences between the 2 Frontend & Backend controllers.

I’m using CI 2 and I haven’t touched the core classes.

What's wrong with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凡尘雨 2024-10-28 05:09:33

我已经找到了。
视图中有未定义的函数
它没有显示错误消息,因为该函数位于这样的标签属性中:

<a href="<?=member_url()?>/topics">Title</a>

I've found it .
There was undefined function in the view
and it didn't show the error message because the function was in a tag attribute like that :

<a href="<?=member_url()?>/topics">Title</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文