1

我正在使用 CakePHP 构建 Web 服务,我想为我的所有控制器方法使用一个名为 output.ctp 的视图。到目前为止,我发现我只能拥有一个必须与方法本身同名的视图。

我这样做是因为我在输出模板中有一个高度特定的代码,它需要出现在我发送的每个 json 文件中......有人可以帮忙吗?:)

4

1 回答 1

3

$this->render('output');在任何方法中都将强制呈现该视图,而不考虑方法名称。

或者$this->render('/OutputController/output');来自视图控制器的外部。

不过,元素可能是更好的选择,具体取决于您要实现的目标。

IE

//output controller
$this->render('output');

//posts controller
$this->render('/Output/output');

编辑:麻烦的班级工作

<?php

class AdminApiController extends AppController {

    var $uses = array('Post', 'User', 'Application'); 

    public function posts() {
        $this->layout = 'ajax';
        $this->set('data', $this->Post->find('all'));
        $this->render('/Api/output');
    }

    public function user() {
        $this->layout = 'ajax';
        $id = $this->Auth->user('id');
        $this->User->id = $id;
        $this->request->data = $this->User->read(null, $id);
        unset($this->request->data['User']['password']);
        unset($this->request->data['User']['password_token']);
        $this->set('data', $this->request->data['User']);
        $this->render('/Api/output');
    }

    public function applications() {
        $this->layout = 'ajax';
        $this->set('data', $this->Application->find('all'));
        $this->render('/Api/output');
    }
于 2013-10-26T20:41:38.457 回答