如何在yii的TbActiveForm小部件中自定义动作参数

时间:2017-11-30 12:20:25

标签: yii yii-extensions

您好我想知道是否有任何方法可以在yii中的助推器小部件的TbActiveForm中自定义动作参数?

任何帮助都将不胜感激。

由于

1 个答案:

答案 0 :(得分:0)

Action参数的工作方式类似于CActiveForm

例如:

       <?php
       $form = $this->beginWidget(
           'TbActiveForm', array(
           'id' => 'contact-form',
           /**
           * @var mixed the form action URL (see {@link CHtml::normalizeUrl} for details about this parameter).
           * If not set, the current page URL is used.
           */
           'action' => array('/front/contact'),
           'method' => 'post',
           )
       );
       ?>