有人能告诉我在使用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>
答案 0 :(得分:3)
根据documentation here,您可以将XML文件放在任何您喜欢的位置,但是,您必须能够像使用CFINCLUDE一样访问它。
ColdFusion使用相同的规则来查找图表样式的XML文件,就像使用cfinclude标记包含的文件一样。