gpt4 book ai didi

concatenation - 如何在coldfusion中连接两个字符串并将结果用作变量名?

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

我有一个表单,其中包含许多格式为

  • name="field-1"
  • name="field-2"
  • name="field-3"
  • name="field-4"
  • 等等....

  • 在表单操作页面上,我希望能够使用循环并能够使用循环的索引来连接这样的字符串前缀 <cfset newField = "field-" & #index#>然后使用 #Variables.newField#访问上一页的表单域。

    我一直在玩 Evaluate()功能,但没有运气。我不怎么使用 ColdFusion,所以我可能在语法上有点偏离。

    我如何使用它的一个例子是:
    <cfset newField = "form.field-" & #index#>
    <input type="hidden"
    name="field-<cfoutput>#index#</cfoutput>"
    value="<cfoutput>Evaluate(Variables.newField)</cfoutput>">

    最佳答案

    对于这种情况,您根本不必使用评估。只需按键名访问变量结构。

    <cfset newField = "form.field-" & index>
    <cfset value = variables[newField]>

    要不就
    <cfset value = variables["form.field-#index#"]>

    或者如果您不想使用中间变量
    <cfoutput>#variables["form.field-" & index]#</cfoutput>

    关于concatenation - 如何在coldfusion中连接两个字符串并将结果用作变量名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15770208/

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