在 ColdFusion 版本 9 中,我在 Index.cfm 中有以下内容:
<cfdump var="#Application#">
但我唯一得到的是一个带有应用程序名称的结构 - 没有其他变量,如 rootPath、mappings 或 customTagPath。
这是我在 Application.cfc 中的内容:
<cfcomponent output="false">
<cfset this.name = left("App_#hash(getCurrentTemplatePath())#",64)>
<cfset this.applicationTimeout = createTimeSpan(0,8,0,0)>
<cfset this.sessionManagement=True>
<cfset this.loginStorage = "session">
<cfset this.clientManagement = False>
<cfset this.setClientCookies = True>
<cfset this.setDomainCookies = False>
<cfset this.scriptProtect = "all">
<cfset this.rootPath = getDirectoryFromPath(getCurrentTemplatePath())>
<cfset this.mappings = this.rootPath>
<cfset this.customTagPaths = "#this.rootPath#Components">