我用小部件构建了一个表单。其中之一是我使用 sfWidgetFormPropelChoice 构建的 Multichoices表单。进入我的 customForm.class.php 我有这个:
customForm.class.php:
class customForm extends BaseCustomForm{
public function configure(){
....
$this->setWidgets(array(
...
'myMultiChoice'=>new sfWidgetFormPropelChoice(array('model'=>'custom', 'method'=>'getLotsOfThings'));
...
));
}
}
选项'method'
是获取一个'getLotsOfThings'
没有任何参数的方法。我怎样才能通过参数传递这个方法?
我尝试'method'=>'getLotsOfThings('.$value.')'
了,但这不起作用!