0

社区 我需要你的帮助。我有配置文件:

payments:
    methods:
        paypal:
           enabled: false
           allowed_countries:
              - <country>
              - ...
        credit_card:
           disallowed_countries:
              - <country>
              - ...

如果 arrayNode 仅包含 2 个允许的数组之一:allowed_countriesdisallowed_countries,我如何使用 TreeBuilder 进行验证,如果两个数组在一起,则抛出异常?Symfony 3.2 版

4

1 回答 1

0

您可以通过使用带有ExprBuilder的验证规则向配置树构建器添加更复杂的验证。

这看起来像:

$rootNode
    ->isRequired()
    ->validate()
        ->ifTrue(function($options) {
            return !($options['allowed_countries'] xor $options['disallowed_countries']);
        })
        ->thenInvalid('Either define allowed_countries or disallowed_countries, not both')
        ->end()
    ->children()
        ->arrayNode('allowed_countries')
            ->scalarPrototype()->end()
        ->end()
        ->arrayNode('disallowed_countries')
            ->scalarPrototype()->end()
        ->end()
    ->end();
于 2018-07-29T13:51:08.087 回答