我想讀我創建的XML文件中的一些值XML節點的元素,但它給了我下面的錯誤:無法讀取的ColdFusion
coldfusion.runtime.UndefinedElementException: Element MYXML.UPLOAD is undefined in XMLDOC.
這裏是我的代碼
<cffile action="read" file="#expandPath("./config.xml")#" variable="configuration" />
<cfset xmldoc = XmlParse(configuration) />
<div class="row"><cfoutput>#xmldoc.myxml.upload-file.size#</cfoutput></div>
這裏是我的config.xml
<myxml>
<upload-file>
<size>15</size>
<accepted-format>pdf</accepted-format>
</upload-file>
</myxml>
有人可以幫助我弄清楚什麼是錯誤?
當我打印整個變量<div class="row"><cfoutput>#xmldoc#</cfoutput></div>
它顯示爲
15 PDF
把這樣的東西添加到你的config.xml的開頭,<?xml version =「1.0」encoding =「UTF-8」?>'。 –