1

我有 2 个模板, - /view/opinions/add.ctp - 添加表单 - /view/opinions/list.ctp - 显示意见

我希望它们显示在 /views/opinions/index.ctp 中可能吗?

是通过 $this -> element() 做到这一点的唯一方法吗?如果是这样,我可以包含来自 /view/opinions 而不是 /view/elements 的模板吗?

@编辑

意见控制器.php

class OpinionsController extends AppController { 
    public $helpers = array('Html', 'Form', 'Session');
    public $components = array('Session');

    var $name = 'Opinions'; 

    function index() { 
        $opinions = $this->Opinion->find('all'); 
        if(isset($this->params['requested'])) { 
             return $opinions; 
        } 
        $this->set('opinions', $opinions);       
    } 



    public function add() {
        if ($this->request->is('post')) {
            $this->Opinion->create();
            if ($this->Opinion->save($this->request->data)) {
                $this->Session->setFlash(__('saved.'));
                $this->redirect(array('action' => 'index'));
            } else {
                $this->Session->setFlash(__('Unable to add.'));
            }
        }
    }
} 

索引.ctp

$this->extend('/Opinions/view');
$this->extend('/Opinions/add');

添加.ctp

echo $this->Form->create('Opinion', array('type' => 'file'));
echo $this->Form->input('author_name', array('label' => 'Imię'));
echo $this->Form->input('author_signature', array('label' => 'Podpis'));
echo $this->Form->input('text', array('rows' => '5', 'cols' => '30', 'label' => 'Opinia'));
echo $this->Form->input('author_pic', array('type' => 'file', 'label' => 'Zdjęcie')); 
echo $this->Form->input('author_pic_dir', array('type' => 'hidden')); 
echo $this->Form->end('Dodaj opinię');

视图.ctp`

<?php foreach ($opinions as $opinion): ?>

    <div class="opinion">
        <div class="author">
            <div class="pic"><?php echo $this->Html->image("defaultAvatar.jpg", array('alt' => $opinion['Opinion']['author_name'])); ?></div>
            <div class="signature"><b><?= $opinion['Opinion']['author_name']?></b><br><i><?= $opinion['Opinion']['author_signature']?></i></div>
        </div>
        <div class="text">
            <blockquote><p><?= $opinion['Opinion']['text']?></p></blockquote>       
        </div>
        <div class="clear"><!-- . --></div>
    </div>

    <div class="clear"><!-- . --></div>

<?php endforeach; ?>
<?php unset($post); ?>

`

4

1 回答 1

0

在像 CakePHP 这样的 web 框架中,我们希望保持我们的代码 DRY。为了做你想做的事,我认为更好的方法是创建元素来列出你的意见,并创建另一个元素来添加新的表单。

然后index.ctp你会放这两个元素。并且add.ctp只放入带有表单的元素,并且view.ctp应该放入列出意见的元素。

于 2014-02-06T11:07:40.800 回答