只渲染指定视图 - CakePHP

发布于 2024-10-21 22:16:00 字数 198 浏览 2 评论 0原文

我想单独渲染视图,我想避免渲染 和 default.ctp 文件中定义的其他部分。

我有想要在元素中呈现的信息:

<?php

echo $post['Post']['id'];

?>

我怎样才能做到这一点?它用于 ajax 响应。

谢谢!

I would like to render the view by itself, I want to avoid rendering the <head> and other sections defined in the default.ctp file.

I have the info that I want to render in an element:

<?php

echo $post['Post']['id'];

?>

How can I accomplish this? It is for an ajax response.

Thanks!

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

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

发布评论

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

评论(2

-小熊_ 2024-10-28 22:16:00

您可以创建一个新布局(例如 /app/views/layouts/ajax.ctp),其中包含:

<?php echo $content_for_layout ?>

然后在您的控制器中,在您正在使用的操作中,定义布局:

function myaction() {
    $this->layout = 'ajax';
}

参考: http://book.cakephp.org/view/962/Page-lated-Attribute-layout

You can create a new layout (/app/views/layouts/ajax.ctp, for example) that contains:

<?php echo $content_for_layout ?>

Then in your controller, in the action you are using, define the layout:

function myaction() {
    $this->layout = 'ajax';
}

Reference: http://book.cakephp.org/view/962/Page-related-Attribute-layout

尸血腥色 2024-10-28 22:16:00

只需创建一个名为 ajax.ctp 的布局,该布局仅

<?php
echo $content_for_layout;

在控制器中包含 then

$this->layout = 'ajax';

如果您想以编程方式对所有 AJAX 请求执行此操作,只需将 RequestHandler 组件添加到您的控制器即可

var $components = array('RequestHandler'); //and possibly others

并创建一个 beforeRender 方法,例如

function beforeRender() {
    if ($this->RequestHandler->isAjax()) {
        $this->layout = 'ajax';
        Configure::write('debug', 0);
    }
}

Just create a layout called ajax.ctp which only contains

<?php
echo $content_for_layout;

then in the controller put

$this->layout = 'ajax';

If you want to do this programmatically for all AJAX requests, just add the RequestHandler component to your controller

var $components = array('RequestHandler'); //and possibly others

and create a beforeRender method like

function beforeRender() {
    if ($this->RequestHandler->isAjax()) {
        $this->layout = 'ajax';
        Configure::write('debug', 0);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文