我正在Symfony2
項目中工作,我有一個名爲File
的實體。在一個頁面中,我有一個文件列表,我爲每個文件添加了一個check-box
,我想要的是在文件列表的末尾有一個submit button
,當我點擊按鈕時,我希望文件被刪除。我已經實現了action
這將刪除文件,但我不知道如何獲取選定的文件,所以我可以將它們傳遞給deleteAction($files)
。Symfony2獲取所有選中的複選框
這裏是樹枝文件的代碼:
<tr>
<th>File name</th>
<th>Commentary</th>
<th>Size</th>
<th>Product/ SN</th>
<th>Added at(UTC)</th>
</tr>
{% for file in allFiles %}
<tr>
<td class="name">
<form name="form1" method="post" action="">
<input type="checkbox" name="check_file"> {{ file.filename }}
</form>
</td>
<td>{{ file.uploaderComment }}</td>
<td>{{ _self.bytesToSize(file.filesize) }}</td>
<td>{{ file.product }}</td>
<td>{{ file.added |date("Y/m/d H:i:s","UTC") }}</td>
</tr>
{% endfor %}
我不會使用表單生成器我的例子,我只想刪除選定的文件 – ihssan