我有一个使其可编辑的表!
<table>
<tr>
<th>Name</th>
<th>Code</th>
</tr>
{% for item in list %}
<tr>
<td contenteditable='true'>{{item.name}}</td>
<td contenteditable='true'>{{item.code}}</td>
</tr>
{% endfor %}
</table>
我在表的最后还有一个“提交”按钮,用于提交用户更改。 现在我的问题是如何将编辑后的数据发送到服务器? 如何找到要编辑的内容?列表的哪个项目以及哪个属性被编辑? 还有可编辑表格的更好的主意吗?
我在后端使用django2。