0

我想将 cakePHP 2 中的按钮(注意:我使用的是 Twitter Bootstrap 2.2.1)传递给元素app/View/Elements/Toolbar.ctp

<div class="actions">
<?php echo $this->Html->link(__('New User'), array('action' => 'add'), array('class' => 'btn btn-small',)); ?>
</div>

上面是按钮的示例。根据视图,我想通过不同的操作传递不同的按钮。我怎么做?用Elements,Blocks还是requestaction()什么?

4

1 回答 1

1

cakephp 的做法看起来像这样

在视图中

<?= $this->element('toolbar', array('button' => $button_type)) ?>

在元素中将有一个称为$button可用的变量。请注意,$button_type变量在元素中也可用。

应该这样做

于 2012-12-19T14:22:48.677 回答