1

我对今天遇到的事情感到非常困惑。这是在 linux ColdFusion 8 服务器上运行的。我在根目录中有一个索引页,其中包含子目录中的“header.cfm”文件(“header/header.cfm”)。在 Application.cfc 中设置的变量在 header.cfm 中看不到。

/myRoot  
    |- Application.cfc  
    |- index.cfm  
    /header  
        |-header.cfm  

应用程序.cfc

OnRequestStart: <cfset myAppPath = '/myRoot'>  

index.cfm 有这一行:

<cfinclude template="header/header.cfm">  

标头/标头.cfm

<link rel='stylesheet' href='#myAppPath#/styles/style.css'>

当我运行 index.cfm 时,我收到此错误:“myAppPath”未定义。

4

0 回答 0