Symfony 1.4 和 pjax (ajax Pushstate)?

发布于 2024-11-19 20:46:16 字数 620 浏览 4 评论 0原文

symfony: http://www.symfony-project.org pjax: https://github.com/defunkt/jquery-pjax

大家好,

我是尝试在 symfony 中使用 pjax 来加速我们的网站(我们将能够在大部分时间保持页眉和页脚静态,并且还避免重新加载大量 css/js 和其他文件)。

我对 ajax 或 symfony 没有问题,但我想知道是否有更好的方法:

  1. 使用 postExecute 立即返回 html 代码而不需要 sf 去模板是一个好主意
  2. 如果是这样,我可以以某种方式为所有模块只写一次吗?我想我能做到:

    mySfActions 扩展了 sfActions

    moduleActions 扩展 mySfActions

我想知道是否有更好的方法? 3. 有没有办法在控制器/操作中获取当前布局名称(在模块的 view.yml 中定义)?

symfony: http://www.symfony-project.org
pjax: https://github.com/defunkt/jquery-pjax

Hi all,

I'm trying to use pjax in symfony in order to speed up our website (we will be able to keep header and footer static most of the time, and also avoid reloading lots of css/js and other files).

I have no problem with ajax or symfony, but I want to know if there is a better way:

  1. Is it a good idea to use postExecute to return the html code back right away without sf going to the template at all
  2. If so, can I somehow write this only once for all modules? I imagine that I can do:

    mySfActions extends sfActions

    moduleActions extends mySfActions

I wonder if there is a better way?
3. Is there a way to get the current layout name (defined in the module's view.yml) within the controller/action?

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

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

发布评论

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

评论(3

白首有我共你 2024-11-26 20:46:16

问题 1:不要像那样使用 post-execute。如果您需要从操作中的 ajax 调用返回 html,那么您的操作应该像这样返回:

return $this->renderText("<p>Your html result.</p>");

这将跳过模板调用。

问题2:这是正确的。您已经编写了编写一次函数并使其可用于所有模块操作的最佳方法。

Question 1: Don't use post-execute like that. If you need to return html from an ajax call in your action then your action should return like this:

return $this->renderText("<p>Your html result.</p>");

This will skip the template call.

Question 2: That is correct. You have written the best way to write a function once and have it available to all module actions.

你的笑 2024-11-26 20:46:16

无事可做。

当通过 XmlHttpRequest 调用操作时,symfony 会自动跳过布局渲染,只返回模块渲染。

您需要将所有“静态”资源和 html 放入布局中,仅此而已。

There is nothing to do.

When calling an action via XmlHttpRequest, symfony automaticaly skip the Layout render, and only return the module render.

You need to put all your "static" assets and html in your layout and that's all.

伊面 2024-11-26 20:46:16

感谢大家对我的帮助,你们的所有回答都很有帮助,并为我指明了正确的方向。我想对两个答案都投票,但由于我只能接受一个答案,所以我接受了第一个答案。

无论如何,这就是我所做的:

首先,我扩展了 sfActions 类,这样我就不必在每个模块上添加 preExecute:

<?php 

class mySfActions extends sfActions{
    public function preExecute(){
        $request = $this->getRequest(); 
        if ($request->getParameter('_pjax')) {
            $this->setLayout(false);
        }       
    }
}

然后当然,我的每个模块操作类都必须扩展这个新类。

在我的个人模板中,我有这样的内容:

<?php if($sf_request->getParameter('_pjax')):?>
         <script type="text/javascript" src="/js/question_list.js"></script>
<?php endif;?>

目前这似乎对我来说效果很好,当支持pushstate时我很享受令人难以置信的加载速度,并且在不支持时仍然能够回退(例如在愚蠢的IE上)

Thank you all for helping me, all your answers were helpful and pointed me to the right direction. I wanted to vote for both answers but since I can only accept one, I accepted the very first answer.

Anyhow, here is what I did:

First, I extended the sfActions class so I don't have to do add preExecute on every module:

<?php 

class mySfActions extends sfActions{
    public function preExecute(){
        $request = $this->getRequest(); 
        if ($request->getParameter('_pjax')) {
            $this->setLayout(false);
        }       
    }
}

Then of course each of my module action class must extend this new class.

Inside my individual template I have something like this:

<?php if($sf_request->getParameter('_pjax')):?>
         <script type="text/javascript" src="/js/question_list.js"></script>
<?php endif;?>

This currently seems to work quite well for me, I'm enjoy the incredible loading speed when pushstate is supported, and still able to fallback when it is not (on the dumb IE for example)

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