我正在遍历一个集合(表单)并测试表单字段名称中的“attachedFile”。成功后,我想将表单字段值添加到数组中。目前,我只获取表单字段名称而不是值。
<cfloop collection="#FORM#" item="field">
<cfif FindNoCase('attachedFile',field) IS 1>
<cfset fileNamesArray[fileNamesIndex] = field>
<cfset fileNamesIndex = fileNamesIndex + 1>
</cfif>
</cfloop>
我尝试将索引[whatever]处的数组设置为#form.field#,但这会导致错误(未定义)。任何想法如何在这个循环中获得我的价值?谢谢。