gpt4 book ai didi

coldfusion - 如何使用 cfscript 从另一个 cfm 页面调用 cfc 中的 cffunction?

转载 作者:行者123 更新时间:2023-12-04 02:02:59 24 4
gpt4 key购买 nike

我有一个 test.cfm页面并想用 <cffunction> 调用 cfc命名 errorEmail使用 <cfscript>从该页面(test.cfm)而不是

<cfinvoke component = "#cfcPath#" method = "errorEmail" returnVariable = "myReturn" 
description = "get list of projman">
</cfinvoke>

我试过了:
<cfscript>
errorEmail(cfcPath);
</cfscript>

最佳答案

我一直这样做。

1)创建对象:

<cfscript>
// CREATE OBJECT
TheCFC = createObject("component", "thecfc");
</cfscript>

2)调用函数:
<cfscript>
// CALL THE FUNCTION
SomeVariable = TheCFC .theFunction();
</cfscript>

你的版本看起来像这样
<cfscript>
// CREATE OBJECT
TheObject = createObject("component", "cfcPath");
// CALL THE FUNCTION
myReturn = TheObject.errorEmail();
</cfscript>

关于coldfusion - 如何使用 cfscript 从另一个 cfm 页面调用 cfc 中的 cffunction?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11436776/

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