0

给定以下 XML“thisXML”:

在此处输入图像描述

我可以通过以下方式获取产品名称

<cfset vProduct = thisXML.xmlchildren[1].xmltext>

但是,如何通过 xmlName 获取值,而不是通过 xmlChildren 数组位置,即在伪代码中:

<cfset vProduct = thisXML.xmlchildren[xmlName='product'].xmltext>
4

1 回答 1

3

你应该能够得到它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 一样工作。

于 2012-05-15T01:17:12.227 回答