我需要创建一个字段,当选项获取正则表达式字符串。
所以,我创建了PatternType字段:
public function getDefaultOptions(array $options)
{
$defaultOptions = array(
'data' => null,
'data_class' => null,
'trim' => true,
'required' => true,
'read_only' => false,
'max_length' => null,
'pattern' => null,
'property_path' => null,
'by_reference' => true,
'error_bubbling' => false,
'regexp' => false,
'error_mapping' => array(),
'label' => null,
'attr' => array(),
'invalid_message' => 'This value is not valid',
'invalid_message_parameters' => array()
);
$class = isset($options['data_class']) ? $options['data_class'] : null;
// If no data class is set explicitly and an object is passed as data,
// use the class of that object as data class
if (!$class && isset($options['data']) && is_object($options['data'])) {
$defaultOptions['data_class'] = $class = get_class($options['data']);
}
if ($class) {
$defaultOptions['empty_data'] = function () use ($class) {
return new $class();
};
} else {
$defaultOptions['empty_data'] = '';
}
$patt = $options['regexp'];
unset($options['regexp']);
$defaultOptions['validation_constraint'] = new Regex(
array(
'pattern' => $patt,
'match' => true,
'message' => 'Niewłaściwy format'
)
);
var_dump($defaultOptions);
return $defaultOptions;
}
var_dump返回格式正确的设置数组,其中包含regex对象 - 但是当生成表单时,验证不起作用 - 传递任何值。知道为什么吗?
答案 0 :(得分:1)
你为什么要这样做?已经有regex validator了。只需使用带有该验证器的普通文本字段。
如果您需要没有要绑定的模型类的表单,请阅读the corresponding section。
答案 1 :(得分:0)
好的,我发现了什么是错的 - 你只能将验证器常量添加到根表单对象(其他symfony只是忽略)。因此,我需要的只是获取根表单,添加validator_constant并设置validator_group选项。然后只需指定字段正确的validator_group。