我在 Symfony 2.0.4 中使用回调验证器来验证嵌入表单的集合。我正在尝试查看其中一个表单字段是否在任何表单中重复,如果是,则在该字段上添加错误。
这是代码:
/**
* @Assert\Callback(methods={"isPriceUnique"})
*/
class Pricing {
protected $defaultPrice;
protected $prices;
public function isPriceUnique(ExecutionContext $context){
//Get the path to the field that represents the price collection
$propertyPath = $context->getPropertyPath().'.defaultPrice';
$addedPrices = $this->getPrices();
\array_unshift($addedPrices, $this->getDefaultPrice());
for($i=0; $i<\count($addedPrices); $i++){
$price=$addedPrices[$i];
$country=$price->getCountry();
//Check for duplicate pricing options(whose country has been selected already)
if($i<\count($addedPrices)-1){
for($j=$i+1; $j<\count($addedPrices); $j++){
if(\strcmp($country, $addedPrices[$j]->getCountry())==0){
$context->setPropertyPath($propertyPath.'.'.$j.'.country');
$context->addViolation('product.prices.unique', array(), null);
break;
}
}
}
}
}
$prices 字段是 Price 实体的数组,每个实体都有 country 属性。国家也被添加到表单类型中。
我只想在 country 属性上添加错误,但似乎 Symfony 不允许我指定比 $propertyPath.'.field' 更复杂的内容。
谁能告诉我 $propertyPath 的语法是什么,它允许我在层次结构中指定一个较低级别的字段集?
更新:
似乎验证已正确完成,在研究了 PropertyPath 类构造函数后,我确定我使用的路径是正确的。问题是指定的消息未按预期显示在国家/地区字段上。