我Element XMLZONE is undefined in REQUEST
每天会收到几十次错误。
PageDisplay.cfm调用通过页面ZoneManager.cfm设置的request.xmlzone,使用以下(缩减)代码
<cfscript>
variables.aZoneInfo = XmlSearch(application.xmlZones, "//zone[position() = 1]");
try {
request.xmlZone = ToString(variables.aZoneInfo[1]);
}
catch(any expt)
{
variables.objZoneDAO = CreateObject("component", "#application.sComponentDir#ZoneDAO").init(application.sDSN);
variables.objZoneDAO.Read(variables.objZone, 1); }
</cfscript>
现在,XML 永远不会改变,因此值得将 XML 文件/节点作为变量添加到PageDisplay.cfm吗?我也想知道它为什么会失败——有什么原因吗?
谢谢,
JJ