以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 XQuery/XLink/XPointer/ 』  (http://bbs.xml.org.cn/list.asp?boardid=14)
----  请教一个xquery的基础使用问题  (http://bbs.xml.org.cn/dispbbs.asp?boardid=14&rootid=&id=75640)


--  作者:wienne
--  发布时间:6/22/2009 5:31:00 PM

--  请教一个xquery的基础使用问题

file: 01.xml
以下内容为程序代码:

<?xml version="1.0" encoding="utf8"?>
<?xml-stylesheet type="text/xsl" href="01.xsl"?>
<catalog>
<cd>
  <title>0001</title>
  <artist>1</artist>
  <country>USA</country>
  <company>Columbia</company>
  <price>10.90</price>
  <year>1985</year>
</cd>
<cd>
  <title>0002</title>
  <artist>3</artist>
  <country>USA</country>
  <company>Columbia</company>
  <price>10.90</price>
  <year>1985</year>
</cd>
</catalog>

以上xml文件中有一行
“<?xml-stylesheet type="text/xsl" href="01.xsl"?>”

可以在01.xsl文件里写xlt的代码来处理xml数据


file: 01.xsl
以下内容为程序代码:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
    <tr bgcolor="#9acd32">
      <th align="left">Title</th>
      <th align="left">Artist</th>
    </tr>
    <xsl:for-each select="catalog/cd">
    <xsl:if test="artist > 1">
    <tr>
      <td><xsl:value-of select="title"/></td>
     <td><xsl:value-of select="artist"/></td>
    </tr>
    </xsl:if>
    </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

那么,如果我用xquery的程序来处理xml数据文件

应该在01.xml里如何引用xquery的程序文件呢?

其实我的问题就是xquery的程序代码写在哪里

另外,如果用xquery的话,哪些浏览器支持它

IE7 ? IE8? Firefox?

手机浏览器也能支持吗?


--  作者:hexun831012
--  发布时间:6/30/2009 5:23:00 PM

--  
浏览器还支持Xquery,那应用数据岂不是全暴露了,你是的是Xpath吧
--  作者:wienne
--  发布时间:6/30/2009 8:14:00 PM

--  
嗯,谢谢您的回复

我也通过其他方式发觉了,无法在浏览器里用xquery

至于你说的原因我有些不赞同

虽然是暴露了一些数据,但这种方式对些特定的应用是没有问题的

所以怎么去用它也是需要仔细考虑的

还是谢谢你回复


--  作者:wingwing
--  发布时间:10/28/2009 8:07:00 PM

--  
浏览器一般不支持XQuery,需要专门的工具来解析,一般是server内部使用XQuery
W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
109.375ms