给定以下 XML“thisXML”:
我可以通过以下方式获取产品名称
<cfset vProduct = thisXML.xmlchildren[1].xmltext>
但是,如何通过 xmlName 获取值,而不是通过 xmlChildren 数组位置,即在伪代码中:
<cfset vProduct = thisXML.xmlchildren[xmlName='product'].xmltext>
给定以下 XML“thisXML”:
我可以通过以下方式获取产品名称
<cfset vProduct = thisXML.xmlchildren[1].xmltext>
但是,如何通过 xmlName 获取值,而不是通过 xmlChildren 数组位置,即在伪代码中:
<cfset vProduct = thisXML.xmlchildren[xmlName='product'].xmltext>
你应该能够得到它thisXML.Product
- 它对我有用。
--xmltest.xml
<table1>
<product>KiaOra</product>
<SubscriberCode>2232481600</SubscriberCode>
</table1>
--xmltest.cfm
<cfscript>
// this is setup stuff
f = FileRead(expandPath("xmltest.xml"));
x = XmlParse(f);
xDetail = XmlSearch(x,"/table1")[1]; // this gets the exact result your cfdump image has
// here is the important part
writeOutput(xDetail.product.xmlText);
</cfscript>
- 输出
KiaOra
您只需要意识到,即使您的 XML 在详细视图中打印出来,它仍然像标准 cfdump 视图中的 XML 一样工作。