0

注釈付きのコントローラーを定義しました

@Route("/add,{elId},{elType},{parentId}",name="MeaTask_Add", defaults={"elId"=null,"elType"=null, "parentId"=null})
public function addAction($elId=null, $elType=null, $parentId=null, Request $request){

ここのように使ってみます

$this->generateUrl('MeaTask_Add',array(
                    'parentId'=>$parentId         
                ))

そして得る

  An exception has been thrown during the rendering of a template ("Parameter "elType" for route "MeaTask_Add" must match "[^/,]++" ("" given) to generate a corresponding URL.") 
4

1 に答える 1