我有Page对象:
Page:
actAs:
Timestampable: ~
I18n:
fields: [name,content,attachment,course_name, course_description ]
actAs:
Sluggable: { fields: [name], uniqueBy: [lang, name], canUpdate: true }
columns:
...
is_course: { type: boolean }
course_name: { type: string(255) }
course_description: { type: string(500) }
带有嵌入式i18n格式的PageForm:
//PageForm.class.php
public function configure()
{
...
$this->embedI18n(array('pl','en'));
$this->widgetSchema->setLabel('en', 'Angielski');
$this->widgetSchema->setLabel('pl', 'Polski');
}
当is_course设置为false时,不需要字段course_name和course_description。但是如果启用了is_course,则验证应该抛出需要course_name和course_description的错误。
我已经阅读了“Symfony Advanced Forms”指南和其他一些帖子,但我不知道我应该在PageForm或PageRnslationForm中的PostValidator中使用sfValidatorCallback吗?我试图以这种方式使用sfValidatorCallback:
//PageForm.class.php
public function configure()
{
...
$this->validatorSchema->setPostValidator(
new sfValidatorCallback(array('callback' => array($this,'checkCourses')))
);
}
public function checkCourses($validator, $values)
{
if($values['is_course'])
{
if($values['pl']['course_name'] && !$values['pl']['course_description'])
{
$error = new sfValidatorError($validator,'Required filed');
throw new sfValidatorErrorSchema($validator, array( _what_name_ => $error));
}
}
return $values;
}
但我不知道如何在$ values ['pl'] ['course_description']中抛出错误,因为Symfony API说_what_name_应该是一个错误数组..
我真的很困惑在symfony中验证表单的过程中是什么。
//修改
我在PageTranslationForm中做了一些更改,现在它看起来像这样...... //PageTranslationform.class.php
public function configure()
{
//......
$this->validatorSchema->setPostValidator(
new sfValidatorCallback(array('callback' => array($this,'checkCourses')))
);
//.....
}
public function checkCourses($validator, $values)
{
if($values['course_name'] && !$values['course_description'])
{
$error = new sfValidatorError($validator,'Required');
throw new sfValidatorErrorSchema($validator, array( 'course_description' => $error));
}
elseif(!$values['course_name'] && $values['course_description'])
{
$error = new sfValidatorError($validator,'Required');
throw new sfValidatorErrorSchema($validator, array( 'course_name' => $error));
}
return $values;
}
它几乎可以工作但是......只有在PageForm is_course设置为“true”时才应启用此验证器。如何从PageTranslationForm中的checkCourses函数中的PageForm访问字段“is_course”?
//解
谢谢Jeremy,我用了你的想法,终于得到了这个解决方案:
//PageForm.class.php
public function configure()
{
$this->embedI18n(array('pl','en'));
$this->widgetSchema->setLabel('en', 'Angielski');
$this->widgetSchema->setLabel('pl', 'Polski');
//.....
if($this->getObject()->getIsCourse())
{
foreach($this->getEmbeddedForms() as $key => $form)
{
$this->validatorSchema[$key]->setPostValidator(
new sfValidatorCallback(array('callback' => array($form,'checkCourses')))
);
}
}
}
//PageTranslationForm.class.php
//configure etc
public function checkCourses($validator, $values)
{
$errorSchema = new sfValidatorErrorSchema($validator);
if($values['course_name'] && !$values['course_description'])
{
$errorSchema->addError(new sfValidatorError($validator,'required'), 'course_description');
}
elseif(!$values['course_name'] && $values['course_description'])
{
$errorSchema->addError(new sfValidatorError($validator,'required'), 'course_name');
}
elseif(!$values['course_name'] && !$values['course_description'])
{
$errorSchema->addError(new sfValidatorError($validator,'required'), 'course_name');
$errorSchema->addError(new sfValidatorError($validator,'required'), 'course_description');
}
if (count($errorSchema))
{
throw new sfValidatorErrorSchema($validator, $errorSchema);
}
return $values;
}
感谢您的建议,它完美无缺,我希望它会有所帮助:)
答案 0 :(得分:2)
这应该是一个后验证器,因为您使用的是多个值。
通过post验证器验证时,您可以通过两种不同的方式抛出错误:
<强>全球强>
当全局抛出错误时,它将显示为sfForm::renderGlobalErrors
的一部分。要全局抛出,只需在回调中抛出错误:
public function checkCourses($validator, $values)
{
if ($invalid)
{
throw new sfValidatorError($validator, 'Required.'); //global messages should be more specific than this
}
}
<强>本地强>
要在本地呈现错误,请像正在执行的那样抛出包含数组的模式。数组的键将确定呈现错误的字段。这可能是你想要的。
public function checkCourses($validator, $values)
{
if ($invalid)
{
$error = new sfValidatorError($validator,'Required filed');
throw new sfValidatorErrorSchema($validator, array('course_description' => $error));
}
}