如果这个问题以前出现在某个地方,我深表歉意,但我找不到任何东西。
所以,问题真的很简单:这些是模仿的行为的任何 django 原生表单域request.POST.getlist('something')
吗?
在我的 UI 中,用户创建了一个他想要保存的对象列表,这些对象表示为具有相同名称的隐藏输入列表:
<input type="hidden" name="cc" value="1045">
<input type="hidden" name="cc" value="1055">
<input type="hidden" name="cc" value="1046">
request.POST.getlist
完全符合我的需要,但我不想直接处理请求,我想通过表单来处理它。