arrayCollection在Javascript中

时间:2013-11-06 16:19:02

标签: javascript ajax symfony arraycollection jmsserializerbundle

我有这个动作

public function testAction($array){
        /**
         * @var $array \Doctrine\Common\Collections\Collection
         */
        return array(
            'array_like' => $array->slice(0,5),
          );
    }

我用

在我的树枝上渲染
{{ render(controller("SNWallBundle:Wall:test" ,{ 'array': obj.spotted.spottedLike} )) }}

然后我想调用testAction for slice to 5,10

使用ajax调用

 $.ajax({
                type: "POST",
                url: Routing.generate('test',{array:ARRAY COLLECTION !}),
                dataType: "json",
                beforeSend: function() {
                },
                success: function(msg) {
                    console.log("OK");
                },
                error: function(msg) {
                },
                complete :function( msg ) {
                }
            });

我该怎么办? 我必须使用JMS Serializer?

0 个答案:

没有答案