在 ORM Coldfusion 中使用动态生成的实体名称
Using dynamically generated entity name in ORM Coldfusion
我试图通过从数据库中检索其名称来加载持久性 ORM 实体,但它一直给我一个错误。该错误表明不存在具有该名称的 CFC,但它在错误中清楚地显示了 CF 的名称并且它是正确的。也许这是不可能的事情?
这是示例代码(一些变量显然是动态生成的,但不是下面示例的一部分)
<cfset friendlyColumn = entityLoad("importFriendlyNames",{friendly_name=#matchingStruct[columns]#})>
<cfloop array="#friendlyColumn#" index="fl">
<!--- find the entity from the value in the database -- this fails --->
<cfset newEntity = entityNew("#fl.getforeign_key_type()#")>
<cfset newEntity.setName("#cd[columns][currentrow]#")>
<cfset entitySave(newEntity)>
</cfloop>
语法不正确还是不可能?
感谢您的帮助。
我明白了。检索名称时有空白 space。当我使用
<cfset newEntity = entityNew("#trim(fl.getforeign_key_type())#")>
成功了。
谢谢
我试图通过从数据库中检索其名称来加载持久性 ORM 实体,但它一直给我一个错误。该错误表明不存在具有该名称的 CFC,但它在错误中清楚地显示了 CF 的名称并且它是正确的。也许这是不可能的事情?
这是示例代码(一些变量显然是动态生成的,但不是下面示例的一部分)
<cfset friendlyColumn = entityLoad("importFriendlyNames",{friendly_name=#matchingStruct[columns]#})>
<cfloop array="#friendlyColumn#" index="fl">
<!--- find the entity from the value in the database -- this fails --->
<cfset newEntity = entityNew("#fl.getforeign_key_type()#")>
<cfset newEntity.setName("#cd[columns][currentrow]#")>
<cfset entitySave(newEntity)>
</cfloop>
语法不正确还是不可能?
感谢您的帮助。
我明白了。检索名称时有空白 space。当我使用
<cfset newEntity = entityNew("#trim(fl.getforeign_key_type())#")>
成功了。
谢谢