如何使用FOSRestBundle和FormType创建嵌套对象?

时间:2015-11-04 01:51:14

标签: json symfony fosrestbundle

我正在使用symfony2 + FOSRestBundle开发API,我有两个错误。 以下是我的代码:

属性

/**
 * Property
 *
 * @ORM\Table(name="property")
 * @ORM\Entity
 * @ORM\InheritanceType("JOINED")
 * @ORM\DiscriminatorColumn(name="discr", type="string")
 * @ORM\DiscriminatorMap({"house" = "House"})
 */
abstract class Property {

    /**
     * @ORM\OneToMany(targetEntity="Image", mappedBy="property", cascade={"persist"})
     * */
    private $images;


    function getImages() {
        return $this->images;
    }

    function setImages($images) {
        $this->images = $images;
    }


}

内部

class House extends Property
{
/* More code */
}

图片

class Image {

    /**
     * @ORM\Column(name="content", type="text", nullable=false)
     */
    private $content;

    /**
     * @ORM\ManyToOne(targetEntity="Property", inversedBy="images")
     * @ORM\JoinColumn(name="propertyId", referencedColumnName="id")
     * */
    private $property;
}

属性类型

class PropertyType extends AbstractType {

    public function buildForm(FormBuilderInterface $builder, array $options) {
        $builder->add('images');


        $builder->get('images')
                ->addModelTransformer(new CallbackTransformer(
                        function($images) {
                            $image = new \Cboujon\PropertyBundle\Entity\Image();
                            $image->setContent('test of content');
                            return array($image);
                }, function($imagesContents) {

                }));
    }

HouseRESTController

/**
 * @View(statusCode=201, serializerEnableMaxDepthChecks=true)
 *
 * @param Request $request
 *
 * @return Response
 *
 */
public function postAction(Request $request)
{ 
    $entity = new House(); 
    $form = $this->createForm(new HouseType(), $entity, array("method" => $request->getMethod()));
    $this->removeExtraFields($request, $form);
    $form->handleRequest($request);

    if ($form->isValid()) {
        $em = $this->getDoctrine()->getManager();
        $em->persist($entity);
        $em->flush();

        return $entity;
    }

当我创建一个新房子时,我发送这个(简化的)JSON:

{"images":["base64ContentImage_1", "base64ContentImage_2"]}

第一个问题:传递给$images的第一个函数中的CallbackTransformer参数为NULL。为什么呢?

第二个问题:为了测试并理解第一个问题,我强制创建一个图像实体,但是我得到了一个带有错误的JSON响应"实体传递到必须管理选择字段。也许坚持他们在实体经理?"

任何人都可以帮我解决两个问题中的任何一个吗?

1 个答案:

答案 0 :(得分:0)

我找到了一个解决方案

我已创建ImageType

public function buildForm(FormBuilderInterface $builder, array $options)
{
    parent::buildForm($builder, $options);
    $builder
        ->add('content')
    ;
}

我也被修改了PropertyType

public function buildForm(FormBuilderInterface $builder, array $options) {
    $builder
            ->add('title')
            ->add('description')
            ->add('price')
            ->add('services')
            ->add('images', 'collection', array(
                'type' => new ImageType(),
                'allow_add' => true,
            ))
    ;
}

最后,我改变了我的请求的JSON结构:

{"images":[{content: "base64ContentImage_1"}, {content:"base64ContentImage_2"}]}