我在这里看到许多问题,涉及在 j库里或其他 j夫图书馆采用动态形式,我认为我设法为我的测试目的建立动态形式。
我的问题是,在把我的形式领域命名和在服务器方面处理它们方面的最佳做法是什么。
我试图实施一种类似形式的接触,即用户可以增加多种电话号码(和类型)以及多种地址(和类型),类似于以下代码,这是将动态重复的代码。
<div id="phones">
<label>Phone Number</label><input type="text" name="phone1" value="" />
<label>Type</label><input type="text" name="type1" value="" />
</div>
Then I will have a +/- link or button to add another phone or remove a phone. When I submit the form, whats the best way to handle the combo of name/type Should I have the names like indicated above with a postfix of an id like phone1 / type1 or should I use the array naming like phone[] / type[] and match the pairs on the server according to the index.
我正在使用java(如果是java 或 php,或者不管怎样),但这样做的最佳做法是什么。
增 编