English 中文(简体)
从CFLOOP中获取价值
原标题:Getting values from CFLOOP

我正试图从一个CFLOOP中提取价值,并丢掉这些价值,但我似乎失踪了。 我需要开张。 第一胎和开放时间 第二场会议的记录,并将其放在变量上,然后在数据库中提出数值。

这是我在放弃第版图时的 st脚石。 我们需要获得可变的<代码>格式>。 问题在于开放 小时数按“CountVar#”计算,基本上需要放弃像“Noform”这样的东西。 小时[CountVar]#

struct  
FIELDNAMES   POSTITNOW,OPENHOURS1,OPENHOURS2,OPENHOURS3,OPENHOURS4,OPENHOURS5,OPENHOURS6,OPENHOURS7
OPENHOURS1   13
OPENHOURS2   13
OPENHOURS3   12
OPENHOURS4   0
OPENHOURS5   0
OPENHOURS6   0
OPENHOURS7   0
POSTITNOW    YES 
问题回答

不是#form. openHours[CountVar]#,你想要的是:

form["openHours" & CountVar]

作为范围,南太平洋论坛也是一个障碍,你可以使用阵列灯来达到这些数值。

这是用动态格式外地名称开展工作的关键。

澄清:

form.openHours7

页: 1

form["openHours7"]

第一种一般称为“注解”,第二种是阵列通知(因为你指的是阵列要素的方式类似)。

由于彩票的价值是扼杀物,你可以用变数取代。

<cfset fieldToUse = "openHours7">
<cfoutput>#form[fieldToUse]#</cfoutput>

或者,正如我开始的那样,是字面直线和变数的组合。

你们确实能够这样做。 (至少不使用通常不建议的评估)

文件载有关于如何与结构合作的信息,包括不同的通知方法。

我认为,你想要这样做,或者说非常相似:

<cfoutput>
<cfloop from="1" to="7" index="CountVar">        
     #openHours[CountVar]#<br>
</cfloop>
</cfoutput>

令我感到悲伤的是,这对我来说是一小mur,但我从未停止过。 你们是否会有同等数量的开放时间或开放时间? 你们只能坐下来。 外地名称? 现在,你有点名开放时间1-N,像开放时间1-N这样的声音尚待补充。 看来,如果实地开始开放时间,你就能够打开外地名称,那么你可以很容易地创造相应的开放时间。 正如Al Al(S)早些时候所说的那样,你最可能利用阵列通知来使价值摆脱形式结构。

另一种想法是,外地名称不必独一无二。 如果你多次出现“开放时间”,那么,冷却会把这种局面变成你的名单,那么你就只能从这份名单上发言。





相关问题
JQuery AJAX .load - flash chart doesnt load in IE

An IE issue has me completely stumped. I have a coldfusion page that uses JQuery s AJAX .load function to load in a new flash file that is generated by coldFusion s cfchart tag. This works completely ...

Best Coldfusion Library for OpenID [closed]

I am getting ready to start a project that requires using OpenID within Coldfusion 8. I have found a number of different options and was wondering what has worked the best, get s the most support, ...

Find ColdFusion Generated ID

Is there a way to find the elements generated by ColdFusion s <CFLayout> and <CFLayoutArea> tags? These tags: <cflayout type="tab" name="MyAccount"> <cflayoutarea name="...

ColdFusion COM error

I am upgrading from CF4.5 to CF8. Calls to COM dll s that used to work in version 4.5 now throw a "Complex object types cannot be converted to simple values.." error. The COM object has a few arrays ...

What s the best way to write engine-specific CFML code?

Sometimes it is necessary to write different code for Adobe ColdFusion vs Railo vs OpenBD, due to differences in implementation. Do people have a specific method that they use for this? For example, ...

热门标签