gpt4 book ai didi

xml - 如何将 XML 链接到 XSD?

转载 作者:数据小太阳 更新时间:2023-10-29 01:38:52 24 4
gpt4 key购买 nike

一直在想,就像我们使用 -declaration 将 XML 绑定(bind)到 DTD 一样,我们如何使用 XSD 来做到这一点?

MSDN 示例:

<?xml version="1.0"?>
<Product ProductID="123"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="Product.xsd">
<ProductName>Rugby jersey</ProductName>
</Product>

是 xsi:NoNamespaceSchemaLocation 起作用了吗?或者这只是另一个 namespace ?

[编辑]并且是

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

..line 只是为了给我们一个唯一的 XML 命名空间,还是它也提供了关于模式所在位置的信息?

最佳答案

试试schemaLocation

<?xml version="1.0"?>

<note
xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3schools.com note.xsd">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

noNamespaceSchemaLocation 不同。请注意,对于 XML 文档的使用者来说,这两者实际上只是理论上的“提示”。我从来没有遇到过不遵循它们的 xml 处理器;毕竟,这是 W3C 的建议。见http://www.w3.org/TR/xmlschema-1/

但实际上,它可能出错,因为here ,但话又说回来,它被认为是一个错误是有原因的。

做空:我只是相信它,到目前为止没有伤害:-)

我认为现在没有任何像样的 xml 处理器可以忽略这个“提示”。

url 总是为了唯一性,但在某些情况下,URL 下会提供一些信息。

关于xml - 如何将 XML 链接到 XSD?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/740751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com