我在多行中有表单元素。命名这些元素的最佳方法是什么,以便我可以读取表单中的所有值并生成带有这些值的 JSON?由于 HTML 不支持数组,最好的选择是什么?
每行有 2 个文本元素和 1 个选择元素。这些行是动态生成的。
编辑:基本上我想要一种简单的方法将我的数据转换为 JSON,以便我可以将它传递给服务。
我的每一行看起来像这样
<tr><td><input type="text"></input></td>
<td><select><option>Exact</option><option>Regex</option><option>Action</option></select></td>
<td><input type="text"></input></td></tr>
<tr><td><input type="text"></input></td>
<td><select><option>Exact</option><option>Regex</option><option>Action</option></select></td>
<td><input type="text"></input></td></tr> .....