1

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

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

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

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

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

有任何想法吗?

4

1 回答 1

4

来自文档的示例:

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
    ));
  }
}
于 2012-12-03T20:16:01.910 回答