Noob, question relating to FOSRestBundle, JMSSerializerBundle and templates.
I'm attempting to replace some existing code that's currently outputting json via twig to use the FOSRestBundle. This has been successful where content being passed from the Controller was originally in arrays, but now I'm trying to pass a form to FOSRestBundle, the result is my values never get returned.
The code below replicates the scenario
/**
* my sample get action
* @View(templateVar="form")
*/
public function getAction($id)
{
...
$form = $this->createFormBuilder(array('myValue' => 'SOMEVALUE'))
->add('myValue', 'hidden')
->getForm();
$view = FOSView::create($form);
$view->setFormat('json');
return $this->get('fos_rest.view_handler')->handle($view);
}
returns
{"children":{"_token":[],"myValue":[]}}
what I expected to see here was something like:
{"children":{"_token": "mylongtoken","myValue": "SOMEVALUE"}}
I've been basing my code on the examples in LiipHelloBundle, unless I'm mistaken this matches the examples they provide? Any ideas where I'm going wrong?
$form->createView()before passing it to view handler? – thecatontheflat Jul 26 '12 at 20:34{"children":{"_token":[],"myValue":[]}}with createView I still end up with just:{"_token":[],"myValue":[]}– MadManMonty Jul 26 '12 at 23:44