- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道错误意味着什么,但据我所知,模式中正确声明了 Order 元素。这与我声明架构位置的方式有关吗?我不知道如何修复声明。有什么想法吗?
我的 XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<Order
xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://lolteamrecruiter.com order.xsd">
<Customer id="n12">Aaron Rodgers</Customer>
<Product>
<Name>Old Time Souvenir Football</Name>
<SKU>244</SKU>
<Quantity>12</Quantity>
<Price currency="taco">21.95</Price>
<ShipTo>
<Street>135 Airline Highway</Street>
<City>Green Bay</City> <State>WI</State> <Zip>02882</Zip>
</ShipTo>
</Product>
<Product>
<Name>Official Packer Football</Name>
<SKU>256</SKU>
<Quantity>1</Quantity>
<Price currency="USD">France</Price>
<Discount>.10</Discount>
<ShipTo>
<GiftRecipient>Gertrude Rodgers</GiftRecipient>
<Street>271 Old Homestead Way</Street>
<City>San Francisco</City> <State>CA</State> <Zip>02895</Zip>
</ShipTo>
<GiftMessage>Happy Mothers Day to a great Mom! Love, Aaron</GiftMessage>
</Product>
<Subtotal currency='USD'>263.40</Subtotal>
<Tax rate="7.0"
currency='USD'>18.44</Tax>
<Shipping method="USPS" currency='USD'>8.95</Shipping>
<Total currency='USD' >290.79</Total>
</Order>
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="Order">
<xs:complexType>
<xs:sequence>
<xs:element name="Customer" type="xs:string">
<xs:complexType>
<xs:attribute name="id" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="Product" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Name" type="xs:string"/>
<xs:element name="SKU" type="xs:string"/>
<xs:element name="Quantity" type="xs:string"/>
<xs:element name="Price" type="currRestrict">
<xs:complexType>
<xs:attribute name="currency" type="currencyType" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="Discount" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="ShipTo">
<xs:complexType>
<xs:sequence>
<xs:element name="GiftRecipient" type="xs:string"/>
<xs:element name="street" type="xs:string"/>
<xs:element name="City" type="xs:string"/>
<xs:element name="State" type="xs:decimal"/>
<xs:element name="Zip" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GiftMessage" type="xs:string" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Subtotal" type="xs:decimal">
<xs:complexType>
<xs:attribute name="currency" type="currencyType" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="Tax" type="xs:decimal">
<xs:complexType>
<xs:attribute name="currency" type="currencyType" use="required"/>
<xs:attribute name="rate" type="currencyType"/>
</xs:complexType>
</xs:element>
<xs:element name="Shipping" type="xs:string">
<xs:complexType>
<xs:attribute name="currency" type="currencyType" use="required"/>
<xs:attribute name="method" type="methodType" default="UPS"/>
</xs:complexType>
</xs:element>
<xs:element name="Total" type="xs:decimal">
<xs:complexType>
<xs:attribute name="currency" type="currencyType" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="currencyType">
<xs:restriction base="xs:string">
<xs:enumeration value="USD"/>
<xs:enumeration value="CAN"/>
<xs:enumeration value="GBP"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="methodType">
<xs:restriction base="xs:string">
<xs:enumeration value="UPS"/>
<xs:enumeration value="USPS"/>
<xs:enumeration value="Overnight"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="currRestrict">
<xs:restriction base="xs:decimal">
</xs:restriction>
</xs:simpleType>
</xs:schema>
最佳答案
您的实例文档有 xmlns="http://www.w3schools.com"
但您的架构没有 targetNamespace。因此,模式给出了名为 Order
的元素的声明。没有命名空间,但验证器正在寻找名为 Order
的元素的声明在 http://www.w3schools.com
命名空间。
添加 targetNamespace="http://www.w3schools.com"
到 xs:schema
打开标签并修复 xsi:schemaLocation
匹配 - 它当前使用了错误的命名空间 URI。
xsi:schemaLocation="http://www.w3schools.com order.xsd"
xsi:schemaLocation
映射到架构的命名空间必须都一样。
关于xml - cvc-elt.1.a : Cannot find the declaration of element 'Order' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19104097/
我正在寻找通过 sql 查询对我的 sql 结果进行排序,大概在 order by 子句中使用某种嵌套的 order by/order by 我有以下数据: TERM USER I
我有一个表格,其中包含如下所示的部分数据。我已经在 edition_id 上完成了订购。现在还需要订购 laungauge_id,这取决于 edition_id 的值。 Edition_id 是指报纸
所以我有两个表,Questions 和 Answers,由多对多关系表 QuestionsAnswers 连接。 Questions 有一个排序列,允许我控制它们如何显示给用户,而 Questions
当我们说“高阶”函数时,我怀疑“阶”的真正含义是什么?例如,我有一个嵌入式函数调用: f.g.h 那么它叫“三阶”函数吗? “高阶”函数是静态函数累加的概念吗?然后当我有一个递归函数 f 时,在运行时
在具有多个 order by 子句的 SQL 查询中,它们是否真的在执行期间全部运行? 例子: select * from my_table order by field5, field3, fiel
我跟进 query其中 schema.org 数据库用于查找类的子级数量 - 作为比我的应用程序更简单的数据库。我想按字母顺序连接 child 的名字。查询: prefix schema: pre
正如 nazdrovje 所指出的(参见 here ) Ordering@Ordering 可用于获取列表中每个元素的排名。即使列表包含重复元素,结果也是 n 排列(作为整数 1 到 n 的有序列表,
我有两张 table 。 它们都有日期和 item_id 列。 我正在通过 item_id 加入他们。 结果应按两个日期列一起排序 下面的代码有效,生成正确的结果集... 但是它们仅按第一个表的日期排
尝试掌握 SQL 我想按日期订购,然后在其中按标题订购。 示例: SELECT * FROM tblboek ORDER BY jr_van_uitgave DESC 如何在按年龄的订单中按头衔排序?
我想使用 FIELD 参数对我的 SQL 输出进行排序,但是当我这样做时,它首先吐出我不想要的结果,然后它首先吐出我想要的结果。在结果之上,它首先吐出。如果这有意义的话 ;) 如何先吐出已定义的值,然
我有一个无法破解的排序问题。我这样从我的表中选择: SELECT * FROM 'sidemodules' WHERE name = 'module1' OR name = 'module2' OR
我对 Django oscar 的覆盖模型有疑问。我想为模型添加一个新字段,但是当我这样做时,我遇到了 RuntimeError: Conflicting 'order' models in appl
我有两个表,电影和类别,我想先按CategoryID获得一个排序列表,然后按名称排序。。电影表格有三个列ID、NAME和CategoryID。CATEGORY表有两列ID和NAME。。我尝试了下面这样
In a MySQL query, when using the DISTINCT option, does ORDER BY apply after the duplicates are re
我想创建一个 sql 查询,为 2 个不同的查询一起返回结果。例如,我想要以下形式的结果:产品名称, avg(price), min(price), max(price), avg(order), m
我正在使用行号从存储过程中获取分页结果。 我发现使用动态 case 语句列名称进行排序会减慢速度 - 但如果我对所有内容进行硬编码就可以了。 有没有办法通过不使整个 sql 查询一个字符串并使用 SP
如何在范围搜索中使用Morton Order? 在wiki中,在“使用一维数据结构进行范围搜索”段落中, 它说 "the range being queried (x = 2, ..., 3, y =
我正在使用 sequelize.js,我在使用 order 语句时遇到问题,我想先通过 if id 排序(如果我的 id 在该别名表中),然后再排序.... order = [['alias', 'i
我有一个 php 脚本,它从数据库中提取内容并以某种方式打印它们。数据库有一个名为“order”的列标题,它的 INT 大小为 11。当我从数据库中获取数据时,我试图按数据库中的值“order”对内容
我有一个带有 ORDER BY 子句的 UPDATE 查询。我已将相同的查询复制到具有相同 ORDER BY 子句的 SELECT 中,但得到了不同的结果。 更新查询: UPDATE t_locks
我是一名优秀的程序员,十分优秀!