gpt4 book ai didi

forms - 测试是否定义了动态变量

转载 作者:行者123 更新时间:2023-12-01 11:30:15 25 4
gpt4 key购买 nike

我的表单 (UUID) 中有一些带有动态名称的输入变量。为避免错误,我测试变量是否已定义,但奇怪的是,函数 IsDefined 返回错误(当字段未像 radio 或复选框一样发送时)。

表单中的 HTML 结果:

 Yes <input type="radio"id="content_BB66F151-CB09-1C8C-CCF53DE1A92652FC"
name="content_BB66F151-CB09-1C8C-CCF53DE1A92652FC" value="1">
No <input type="radio" id="content_BB66F151-CB09-1C8C-CCF53DE1A92652FC"
name="content_BB66F151-CB09-1C8C-CCF53DE1A92652FC" value="0">

我的 CFM:

Yes <input type="radio" id="content_#qMD.MD_FIELD_ID#"
name="content_#qMD.MD_FIELD_ID#" value="1"> No <input type="radio" id="content_#qMD.MD_FIELD_ID#" name="content_#qMD.MD_FIELD_ID#" value="0">

我的 CFM 测试:我有一个包含所有 MD_FIELD_ID 的列表并遍历它们

<cfloop list="#attributes.lMetadataField#" index="MD_FIELD_ID" delimiters="," >
<cfif IsDefined("attributes.content_" & MD_FIELD_ID)>
</cfif>

当字段不在提交的表单中时,Coldfusion 返回给我:

Parameter 1 of function IsDefined, which is now attributes.content_BB66F151-CB09-1C8C-CCF53DE1A92652FC, must be a syntactically valid variable name.

我尝试过不同的语法:

 IsDefined("attributes.content_#MD_FIELD_ID#") or
attributes["content_#MD_FIELD_ID#"]

但总是同样的错误。如果该字段在提交的表单中,则可以正常工作。

我的代码有什么问题?

最佳答案

当作为参数提供给 : 时,您不能使用连字符(以及各种其他字符,如 #isDefined )作为结构键名称(即变量) .相反,您可以这样做:

<cfif structKeyExists(attributes, "content_" & MD_FIELD_ID)>

structKeyExists不计算表达式,因此不受变量名解析的影响。但是,由于这个事实,您不能链接 structKeyExists尽可能方便。

例子:

isDefined("someStruct.parentKey.childKey")

翻译成

structKeyExists(VARIABLES, "someStruct")
and structKeyExists(someStruct, "parentKey")
and structKeyExists(someStruct["parentKey"], "childKey")

注意您需要如何检查链中每个键的存在。但它允许使用任何字符作为键名。

关于forms - 测试是否定义了动态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32812959/

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