gpt4 book ai didi

ColdFusion:是否可以从 cfscript for in 循环中获取索引?

转载 作者:行者123 更新时间:2023-12-05 01:01:01 26 4
gpt4 key购买 nike

所以我正在使用 for in 循环遍历结构数组

for(item in array) {
processStruct(item)
}

非常简单,我要做的是在 for in 循环中获取当前索引并将其传递给函数:processStruct(item, index) .我知道我可以使用常规的 for 循环来做到这一点,标签版本 <cfloop> 也可以做到这一点。

<cfloop array="#myArray#" index="i">
#i#
<cfloop>

最佳答案

标签变体<cfloop>提供从 ColdFusion 2016(或 Railo/Lucee)开始的项目和索引。

<cfset x = [ "a", "b", "c" ]>
<cfloop array="#x#" index="idx" item="it">
<cfoutput>#idx#:#it#</cfoutput>
</cfloop>
<!--- returns 1:a 2:b 3:c --->

2016 年之前的所有 ColdFusion 版本都没有,因此您必须自己完成:

<cfset x = [ "a", "b", "c" ]>
<cfset idx = 1>
<cfloop array="#x#" index="it">
<cfoutput>#idx#:#it#</cfoutput>
<cfset idx++>
</cfloop>
<!--- returns 1:a 2:b 3:c --->

脚本变体不支持它,而且很可能永远不会。 Java's Iterator interface也不提供。

关于ColdFusion:是否可以从 cfscript for in 循环中获取索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46920189/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com