创建一个接受空值的布尔表单小部件

问题描述 投票:0回答:1

我的 Symfony 模型有一个布尔字段,但也接受 NULL,因此实际上是一个三态值。

我如何为此编写一个小部件? Symfony 自动生成一个 sfWidgetFormCheckbox 但 不能设置为 NULL。

我尝试了 sfWidgetFormChoice,但我必须将值指定为字符串才能让它们工作:

$this->setWidget('wt', new sfWidgetFormChoice(array(
    'choices' => array(true => 'true', false => 'false', null => 'null')
)));

它适用于存储值,但每当我保存“假”值时,选择就会跳回“空”。我尝试了“假”、“0”、“等”的几种组合,但在这三种情况下都没有任何效果。

有什么想法吗?

php widget symfony1 symfony-forms propel
1个回答
4
投票

来自docs的示例:

class sfWidgetFormTrilean extends sfWidgetForm
{
  public function configure($options = array(), $attributes = array())
  {

    $this->addOption('choices', array(
      0 => 'No',
      1 => 'Yes',
      'null' => 'Null'
    ));
  }

  public function render($name, $value = null, $attributes = array(), $errors = array())
  {
    $value = $value === null ? 'null' : $value;

    $options = array();
    foreach ($this->getOption('choices') as $key => $option)
    {
      $attributes = array('value' => self::escapeOnce($key));
      if ($key == $value)
      {
        $attributes['selected'] = 'selected';
      }

      $options[] = $this->renderContentTag(
        'option',
        self::escapeOnce($option),
        $attributes
      );
    }

    return $this->renderContentTag(
      'select',
      "\n".implode("\n", $options)."\n",
      array_merge(array('name' => $name), $attributes
    ));
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.