遇到一个问题,我想我可能会看看是否有人对如何解决它有任何想法。
基本上,我在一个奇异变量下传入多个值,我想使用循环来提取每个单独的值并同时插入它。
例如,ischecked 是我用来传递设备值的变量。如果我要选择两个设备,按提交并在我的处理页面中转储变量#form.ischecked#,我会得到一个值,例如 41,42。我需要一种方法来拆分这些值,并认为 cfloop 和 insert 将是完美的。
如果这很重要,这一切都在 cfc 中完成。
<cfset devicearray = ArrayNew(1)>
<cfset temp = ArrayAppend(devicearray, #ischecked#)>
<cfset test = ArrayToList(devicearray, ",")>
<cfset length= ListLen(test)>\
\\this loop takes the amount of devices selected, and outputs the length of the list.
我用它来找出插入循环应该持续多长时间。我本来也可以只检查数组的长度,但我也打算将该列表用于其他目的。
<cfset devicetest = #form.ischecked#>
<cfset usertest = #form.userid#>
\\form.ischecked is the variable that contains the device IDs
\\form.userid is the variable that contains the User IDs
<cfquery name="loopquery" datasource="Test">
<cfloop from="1" to="#length#" index="i">
\\loop from 1 to "length", the number of Devices selected as specified earlier
INSERT INTO Loan (DeviceID, UserID)
VALUES ("#Evaluate("devicetest#i#")#","#Evaluate("userID#i#")#" )
</cfloop>
</cfquery>
所以基本上这就是我坚持的地方,循环遍历值,但它寻找 devicetest1 而不是 device test (因为索引),但我无法终生弄清楚如何传递值以便它单独挑选出每一个。
我见过一些例子,人们在索引 (i) 中附加了值,然后用它来插入,但并没有真正理解它是如何工作的。
谢谢,乔丹