-1

谁能告诉我在使用coldfusion时是否需要将xml文件放在单独的目录中?现在,我将 xml 文件保存在 .cfm 文件所在的同一目录中。当我运行文件(cfm)时,它说,

Could not locate the style file filename.xml

这是错误:

找不到样式文件 VerticalXLabels.xml。确保文件存在并且可读。

The error occurred in C:\PATH\Testing_Connections.cfm: line 296
Called from C:\PATH\Testing_Connections.cfm: line 271
Called from C:\PATH\Testing_Connections.cfm: line 1

294 :         <cfchartseries  query="detail4" type="line" itemColumn="FIFTHCONN " valueColumn="FIFTHOccurances" > 
295 :        <cfchartseries  query="detail5" type="line" itemColumn="SIXTHCONN" valueColumn="SIXTHOccurances" >   
296 :        <cfchartseries  query="detail6" type="line" itemColumn="SEVENTHCONN" valueColumn="SEVENTHOccurances" >
297 :   </cfchartseries>  
298 : </cfchart>  
4

1 回答 1

3

根据此处的文档,您可以将 XML 文件放在您喜欢的任何位置,但是,您必须能够像使用 CFINCLUDE 一样访问它。

ColdFusion 使用与查找使用 cfinclude 标记包含的文件相同的规则来查找图表样式 XML 文件。

于 2013-07-25T21:26:18.000 回答