CakePHP在表单中输入$变量

时间:2013-04-09 15:11:08

标签: forms cakephp variables do-while cakephp-2.3


我正在使用CakePHP 2.3.1。

我需要知道是否有可能在表单字段中填写$变量。 如果(存在)我应该怎么做?

正如您在我的event_repeat()函数中看到的那样。

        function repeat($id = null) {
            if (!$id) {
                    $this->Session->setFlash(__('Prenotazione non trovata'));
                    $this->redirect(array('action' => 'view', $this->data['Event']['id']));
            }

            //this is the variable I need
            $repeat = $this->data['Event']['repeat'];
            $i = 1;
            do {
                 //code

            } while ($repeat > $i);
        }

$ repeat变量,是用户想要的重复次数,我希望它由输入形式设置为正整数值。

如何使输入字段引用控制器内的变量而不是数据库字段?

1 个答案:

答案 0 :(得分:1)

在您看来:

print $this->Form->input('repeat', array('label' => 'How many times you wish to repeat?', 'name' => 'data[repeats]'));

在你的控制器中:

$repeats = $this->data['repeats'];