{"id":253340,"date":"2022-09-22T08:35:49","date_gmt":"2022-09-22T00:35:49","guid":{"rendered":"https:\/\/lrxjmw.cn\/?p=253340"},"modified":"2022-09-21T14:36:00","modified_gmt":"2022-09-21T06:36:00","slug":"xsd-usage-overview","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/xsd-usage-overview.html","title":{"rendered":"XSD \u4f7f\u7528\u6982\u8ff0"},"content":{"rendered":"\n\n\n
\u5bfc\u8bfb<\/td>\nXML \u6587\u6863\u53ef\u5bf9 DTD \u6216 XML Schema \u8fdb\u884c\u5f15\u7528\u3002<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n
\u4e00\u4e2a\u7b80\u5355\u7684 XML \u6587\u6863<\/strong><\/div>\n

\u8bf7\u770b\u8fd9\u4e2a\u540d\u4e3a \"note.xml\" \u7684 XML \u6587\u6863\uff1a<\/p>\n

\r\n<?xml version=\"1.0\"?>\r\n<note>\r\n<to>Tove<\/to>\r\n<from>Jani<\/from>\r\n<heading>Reminder<\/heading>\r\n<body>Don't forget me this weekend!<\/body>\r\n<\/note><\/pre>\n
DTD \u6587\u4ef6<\/strong><\/div>\n

\u4e0b\u9762\u8fd9\u4e2a\u4f8b\u5b50\u662f\u540d\u4e3a \"note.dtd\" \u7684 DTD \u6587\u4ef6\uff0c\u5b83\u5bf9\u4e0a\u9762\u90a3\u4e2a XML \u6587\u6863\uff08 \"note.xml\" \uff09\u7684\u5143\u7d20\u8fdb\u884c\u4e86\u5b9a\u4e49\uff1a<\/p>\n

\r\n<!ELEMENT note (to, from, heading, body)>\r\n<!ELEMENT to (#PCDATA)>\r\n<!ELEMENT from (#PCDATA)>\r\n<!ELEMENT heading (#PCDATA)>\r\n<!ELEMENT body (#PCDATA)>\r\n<\/pre>\n

\u7b2c 1 \u884c\u5b9a\u4e49 note \u5143\u7d20\u6709\u56db\u4e2a\u5b50\u5143\u7d20\uff1a\"to, from, heading, body\"\u3002<\/p>\n

\u7b2c 2-5 \u884c\u5b9a\u4e49\u4e86 to, from, heading, body \u5143\u7d20\u7684\u7c7b\u578b\u662f \"#PCDATA\"\u3002<\/p>\n

XML Schema<\/strong><\/div>\n

\u4e0b\u9762\u8fd9\u4e2a\u4f8b\u5b50\u662f\u4e00\u4e2a\u540d\u4e3a \"note.xsd\" \u7684 XML Schema \u6587\u4ef6\uff0c\u5b83\u5b9a\u4e49\u4e86\u4e0a\u9762\u90a3\u4e2a XML \u6587\u6863\uff08 \"note.xml\" \uff09\u7684\u5143\u7d20\uff1a<\/p>\n

\r\n<?xml version=\"1.0\"?>\r\n<xs:schema xmlns:xs=\"http:\/\/www.w3.org\/2001\/XMLSchema\"\r\ntargetNamespace=\"http:\/\/www.w3schools.com\"\r\nxmlns=\"http:\/\/www.w3schools.com\"\r\nelementFormDefault=\"qualified\">\r\n<xs:element name=\"note\">\r\n    <xs:complexType>\r\n      <xs:sequence>\r\n\t<xs:element name=\"to\" type=\"xs:string\"\/>\r\n\t<xs:element name=\"from\" type=\"xs:string\"\/>\r\n\t<xs:element name=\"heading\" type=\"xs:string\"\/>\r\n\t<xs:element name=\"body\" type=\"xs:string\"\/>\r\n      <\/xs:sequence>\r\n    <\/xs:complexType>\r\n<\/xs:element>\r\n<\/xs:schema>\r\n<\/pre>\n

note \u5143\u7d20\u662f\u4e00\u4e2a\u590d\u5408\u7c7b\u578b\uff0c\u56e0\u4e3a\u5b83\u5305\u542b\u5176\u4ed6\u7684\u5b50\u5143\u7d20\u3002\u5176\u4ed6\u5143\u7d20 (to, from, heading, body) \u662f\u7b80\u6613\u7c7b\u578b\uff0c\u56e0\u4e3a\u5b83\u4eec\u6ca1\u6709\u5305\u542b\u5176\u4ed6\u5143\u7d20\u3002\u60a8\u5c06\u5728\u4e0b\u9762\u7684\u7ae0\u8282\u5b66\u4e60\u66f4\u591a\u6709\u5173\u590d\u5408\u7c7b\u578b\u548c\u7b80\u6613\u7c7b\u578b\u7684\u77e5\u8bc6\u3002<\/p>\n

\u5bf9 DTD \u7684\u5f15\u7528<\/strong><\/div>\n

\u6b64\u6587\u4ef6\u5305\u542b\u5bf9 DTD \u7684\u5f15\u7528\uff1a<\/p>\n

\r\n<?xml version=\"1.0\"?>\r\n<!DOCTYPE note SYSTEM
\r\n\"http:\/\/www.w3schools.com\/dtd\/note.dtd\">\r\n<note>\r\n<to>Tove<\/to>\r\n<from>Jani<\/from>\r\n<heading>Reminder<\/heading>\r\n<body>Don't forget me this weekend!<\/body>\r\n<\/note>\r\n<\/pre>\n
\u5bf9 XML Schema \u7684\u5f15\u7528<\/strong><\/div>\n

\u6b64\u6587\u4ef6\u5305\u542b\u5bf9 XML Schema \u7684\u5f15\u7528\uff1a<\/p>\n

\r\n<?xml version=\"1.0\"?>\r\n<note\r\nxmlns=\"http:\/\/www.w3schools.com\"\r\nxmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\nxsi:schemaLocation=\"http:\/\/www.w3schools.com note.xsd\">\r\n<to>Tove<\/to>\r\n<from>Jani<\/from>\r\n<heading>Reminder<\/heading>\r\n<body>Don't forget me this weekend!<\/body>\r\n<\/note>\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"

\u8bf7\u770b\u8fd9\u4e2a\u540d\u4e3a “note.xml” \u7684 XML \u6587\u6863\uff1a <?xml version=”1.0″?> […]<\/p>\n","protected":false},"author":1481,"featured_media":253343,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[55],"tags":[],"class_list":["post-253340","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-thread"],"acf":[],"_links":{"self":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/253340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/users\/1481"}],"replies":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/comments?post=253340"}],"version-history":[{"count":5,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/253340\/revisions"}],"predecessor-version":[{"id":253346,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/253340\/revisions\/253346"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media\/253343"}],"wp:attachment":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media?parent=253340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/categories?post=253340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/tags?post=253340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}