如果我不想做任何映射,是否还有另一种方法可以调用组件中的方法,即“上两层”。像这样:
service
component_to_call.cfc
mem
pages
handlers
calling.cfc
这是我从内部打来的电话calling.cfc
:
<cfinvoke
component="service.component_to_call"
method="do_the"
param1="#renderedResults#"
param2="#taskByName#"
returnvariable="tamperedCode">
</cfinvoke>
这会引发service.component_to_call
无法找到的错误。
问:
如何调用父文件夹中的组件?