gpt4 book ai didi

arrays - 在 Coldfusion Array 中使用 null

转载 作者:行者123 更新时间:2023-12-03 22:53:59 25 4
gpt4 key购买 nike

我正在创建一个数组并需要使用空值

<cfset addLinha[1] = qEspecialidades.especialidade>
<cfloop index="i" from="1" to="#numColumnsAntes#">
<cfset arrayAppend(addLinha,null)>
</cfloop>
<cfset arrayAppend(addLinha,LSParseNumber(LSNumberFormat(AvgNota, "_.__")))>

<cfloop index="i" from="#numColumnsDepois#" to="#qEspecialidades.RecordCount#">
<cfset arrayAppend(addLinha,null)>
</cfloop>

我需要一个像这样的数组
 ["Especialidade",null,null,null,null,4.0,null,null,null]

但我还没有找到如何附加 null .

最佳答案

ColdFusion 本身没有空值。根据使用此变量的内容,以下一项或多项可能有用:

  • 使用 javaNull:<cfset javaNull = javaCast( "null", 0 ) />
  • 使用空格:""
  • 使用空结构,即 {}

  • 本纳德尔有 some comments on this也。

    关于arrays - 在 Coldfusion Array 中使用 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13653515/

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