有没有办法将id传递给symfony 2.3中的模态?
这是一个例子:
<a href="{{ path('route', {'id':table.id}) }}" data-reveal-id = "modal" class = "icon" etc.>
所以首先,没有数据显示图标变成了一个链接,当点击它时,它会转到路径中的动作。这很好,因为它正在工作。
<div id="modal" class="reveal-modal large">
<input type="password" id="someid"/>
在我的模态中我有一个密码输入类型,我有一个提交此表单的jquery,我的问题是这次代码没有进入路径。
任何得到答案的人都会受到极大的赞扬。我发誓,你不会听到我,但我会赞美你,谢谢你。
P.S。我对symfony很新,2.3文档刚刚从网站上消失,所以我不知道在哪里可以获得除此之外我需要的信息。
答案 0 :(得分:0)
设置表单&#39; action&#39;在创建表单时使用setAction
属性:
$form = $this->createFormBuilder($entity)
->setAction($this->generateUrl('route',array('id'=>$table->getId())))
->setMethod('GET')
->add('name', 'text')
->getForm();
或
$form = $this->createForm(
'my_form_type',
$entity,
array('action'=>$this->generateUrl('route',array('id'=>$table->getId()))
));