php – 将FOSRestBundle与表单一起使用

前端之家收集整理的这篇文章主要介绍了php – 将FOSRestBundle与表单一起使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Noob,有关FOSRestBundle,JMSSerializerBundle和模板的问题.

我正在尝试替换当前通过twig输出json的现有代码以使用FOSRestBundle.这是成功的,从Controller传递的内容最初是在数组中,但现在我正在尝试将表单传递给FOSRestBundle,结果是我的值永远不会被返回.

下面的代码复制了该场景

/**
 *  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);
}

回报

{"children":{"_token":[],"myValue":[]}}

我希望在这里看到的是:

{"children":{"_token": "mylongtoken","myValue": "SOMEVALUE"}}

我一直把我的代码基于LiipHelloBundle中的示例,除非我错了,这与他们提供的示例匹配?我出错的任何想法?

好吧,这不是我在Symfony中期望的最干净的解决方案,但它似乎是这样的:
$form->createView()->get('form')->get('form')->getChild('myValue')->get('choices')

返回meValue实体:

{“28″:”Default1″,”103″:”test”}

原文链接:https://www.f2er.com/php/136877.html

猜你在找的PHP相关文章