I have a problem with my Symfony 5.2 :
- I make a request with data who's going to a
FormType
withEntityType
Foo::class
but with achoice_value
set oncode
field - I do some payload modification and I forward my request to another Controller
$response = $this->forward('App\Controller\OrderController::create', [
'request' => $request->duplicate(null, $refactorPayload))
]);
- In my new controller I use another
FormType
withEntityType
Foo::class
but with achoice_value
set onid
field this time and I get this error"Unable to reverse value for property path "foo": The choice "10" does not exist or is not unique."
I search in vendor with my debugger and it seems to be the Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader
who 'cache' the list with the first EntityType
and not clear it for the second