我正在尝试从另一个代码文件中调用一个组件并遇到问题。
这就是我的尝试。
__get()
我也尝试使用Adobe文档中演示的#符号。 cfc.FileMove格式用于应用程序中的其他位置,但在此文件中失败,并且日志中未给出错误。
我正在使用的文件位于C:\ inetpub \ wwwroot \ dev \ adminFiles
CFC位于C:\ inetpub \ wwwroot \ dev \ cfc。
根据使用它的最后一个人,cfc被映射到CF服务器。我不明白当我在测试机器上运行<cfinvoke component="cfc.FileMove" method="transferFile" >
This causes the page to fail.
<cfset beginMove = CreateObject('component', 'cfc.FileMove')>
This approach fails here, but is used in other areas of the application.
<cfinvoke component="FileMove" method="transferFile" >
This works, but obviously because its located in the same folder as the file I'm invoking from.
时如何成功运行,它在应用程序中失败了。