Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了使用表单之外,Symfony2 中是否有任何方法可以将数据从模板提交到控制器?
使用隐藏输入:
<input type="hidden" id="hiddenval" name="hiddenval" value=""/>
jQuery :
$('#hiddenval').val('your new value');
然后提交表单时,您可以获得值...
这是在 Symfony 中创建隐藏字段的文档