您好我正在使用MarkLogic 9并尝试使用XQuery和FLWOR语句构建应用程序。我设置了http服务器。我在端口8031上测试了一个带静态文本的简单页面,工作正常。我也试过了 查询控制台中的FLWOR语句也可以正常工作。但是当我把它结合起来时,它就不起作用了。
我希望你能帮助我。
曼尼谢谢
埃里克
FLOWER STATEMENT ML 9.0
for $i in /scope/item
let $sscc := $i/transaction/sscc/text()
return <tr><td>{$sscc}</td></tr>
TEST.XQY
xquery version "1.0-ml";
xdmp:set-response-content-type("text/html; charset=utf-8"),
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Find my orders</title>
</head>
<body>
<table>
<tr><th>SSCC</th></tr>
{
for $i in /scope/item
let $sscc := $i/transaction/sscc/text()
return <tr><td>{$sscc}</td></tr>
}
</table>
</body>
</html>
XML源文件
<scope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<item>
<transaction>
<type>CI</type>
<sscc>00000379471900000025</sscc>
<location>4260210630688</location>
<device>VISTALINK.004</device>
<date>2017-04-25</date>
<time>02:15:33</time>
<gmtOffset>+02:00</gmtOffset>
<actorId>155081</actorId>
</transaction>
<order>
<orderNumber>3794719</orderNumber>
</order>
<load>
<rti>
<ean>8714548186004</ean>
<grai>8003087145481860040019877322</grai>
<column>2</column>
<size>
<width>1900</width>
<height>95</height>
<depth>0</depth>
</size>
<position>
<x>2062,48707520218</x>
<y>2015,24337520512</y>
<z>0</z>
</position>
</rti>
<rti>
<ean>8714548106002</ean>
<grai>8003087145481060020016434653</grai>
<column>0</column>
<size>
<width>1900</width>
<height>95</height>
<depth>0</depth>
</size>
<position/>
</rti>
<rti>
<ean>8714548186004</ean>
<grai>8003087145481860040012803719</grai>
<column>2</column>
<size>
<width>1900</width>
<height>95</height>
<depth>0</depth>
</size>
<position>
<x>2064,20629390666</x>
<y>2124,57539157396</y>
<z>0</z>
</position>
</rti>
<rti>...</rti>
<rti>...</rti>
<rti>...</rti>
<rti>...</rti>
<rti>...</rti>
</load>
</item>
</scope>
答案 0 :(得分:4)
您忘记提及有关您所获得的结果的一些确切详细信息,但是查看您的代码,我猜测,您的HTML页面确实显示,但没有预期的行。这可能是由命名空间引起的。
您已将FLWOR语句嵌入到文字XHTML中。这通常很好,但由于您的XHTML带有默认的名称空间声明,因此同一XML中包含的XPath表达式将使用相同的名称空间声明进行解释。这意味着像/scope/item
这样的XPath表达式在您的情况下实际上被解释为/xhtml:scope/xhtml:item
。
最简单的方法是预先获取项目和/或使用通配符前缀。也许是这样的事情:
let $items := fn:collection()/scope/item
return
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Find my orders</title>
</head>
<body>
<table>
<tr><th>SSCC</th></tr>
{
for $i in $items
let $sscc := $i/*:transaction/*:sscc/text()
return <tr><td>{$sscc}</td></tr>
}
</table>
</body>
</html>
HTH!