我正在创建一个包含cfloop
的表单,并且在提交表单时需要单独访问每个变量。我需要在循环中使用表单的选定条目,将我的选择添加到数据库。
这是我的表格:
<form method="post">
<input type="hidden" name="isPost" value="1">
...
<cfoutput>
<cfloop query="client_admin_surveys">
<input type="text" size="35" name="surveyID" id="surveyID" value="#id#">
<input type="text" size="35" name="surveyName" id="surveyName" value="#name#">
<input type="checkbox" name="amplify" id="amplify">
<input type="checkbox" name="enchance" id="enchance">
<input type="checkbox" name="pacify" id="pacify">
<input type="checkbox" name="pacifyUrgent" id="pacifyUrgent">
</cfloop>
</cfoutput>
...
<input type="submit" name="submit" value="Submit">
</form>
发布表单后,结果会对我的所有选择进行分组,因为我的表单元素具有相同的“名称”。我尝试在每个名称旁边添加一个i
计数以使其不同但后来我对如何处理这些字段感到有点困惑。
答案 0 :(得分:4)
当您添加计数器时,您开始使用正确的路径 - 返回并添加,例如:
<input type="checkbox" name="amplify#client_admin_surveys.currentRow#" id="amplify">
会工作。
我有时也想在处理页面上为'counter'添加一个表单字段
<input type="hidden" name="counter" value="#client_admin_surveys.recordCount#" />
然后在处理页面上,您可以循环计数器并使用括号表示法访问表单字段
<cfloop from="1" to="#form.counter#" indexd="i">
<cfset thisAmplify = form["amplify" & i] />
<cfset thisEnhance = form["enhance" & i] />
<!---- more logic here --->
</cfloop>