Kohana中有没有办法在不缓冲的情况下输出View?

发布于 2024-10-15 21:43:09 字数 24 浏览 3 评论 0原文

(MVC架构一般支持这种能力吗?)

(does the MVC archtecture support this ability in general?)

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

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

发布评论

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

评论(2

甜味超标? 2024-10-22 21:43:09

如果没有缓冲,您无法逐行输出视图。 Kohana 使用输出缓冲区来捕获正在渲染的视图,然后将输出缓冲区作为字符串返回。您必须使用扩展重载 View::render() 或创建自己的类来绕过此问题。

You cannot output a view line by line without buffering. Kohana uses an output buffer to capture the view as it is being rendered, then returns the output buffer as a string. You would have to overload View::render() with an extension or create your own class to bypass this.

憧憬巴黎街头的黎明 2024-10-22 21:43:09

检查 Kohana::close_buffers()

Check Kohana::close_buffers().

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