我正在Kohana框架开发一个应用程序.我想知道在kohana实施ajax的最佳做法.到目前为止,我正在为ajax使用不同的控制器.我认为重要的关注将是尽量减少资源需求和处理会议.
提前致谢
我使用这个:
原文链接:https://www.f2er.com/php/132772.html在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); }