php – Kohana框架 – Ajax实现最佳实践

前端之家收集整理的这篇文章主要介绍了php – Kohana框架 – Ajax实现最佳实践前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在Kohana框架开发一个应用程序.我想知道在kohana实施ajax的最佳做法.到目前为止,我正在为ajax使用不同的控制器.我认为重要的关注将是尽量减少资源需求和处理会议.

提前致谢

我使用这个:

在Controller_Template中:

public function before()
    {
        $this->auto_render = ! $this->request->is_ajax(); 
        if($this->auto_render === TRUE)
        {
            parent::before();
        }
    }

在我的行动内

if ($this->request->is_ajax())    
        {
            ...         
            $this->response->headers('Content-type','application/json; charset='.Kohana::$charset);
            $this->response->body($jsonEncoded);
        }
原文链接:https://www.f2er.com/php/132772.html

猜你在找的PHP相关文章