我遇到了问题。我正在使用 cfoutput 在表单中运行查询结果。有一些动态命名的cfselect,即entry_1、entry_2 等。然后将它们与url 中的记录计数一起传递到actionpage,我想将它们插入到带有cfloop 的数据库中。
<cfloop from="1" to="#url.Count#" index="i">
<cfquery name="id_#i#" datasource="xxx">Insert Into table1(entry_level) Values(#form.entry_#i##)</cfquery>
</cfloop>
而且每次都会抛出错误。我试过使用数组格式,但我仍然无法让它工作。请帮忙!