命名空间 xmlns 中的 URI 需要什么
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
考虑到此命名空间前缀为 telerik
并且 URI 为 http://schemas.telerik.com/2008/xaml/presentation,该 URI 的用途是什么。所提到的 URI 中是否有任何模式,或者它只是一个逻辑名称?
我可以提供 xmlns:telerik="http://schemas.myexample.com
吗?
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
Considering this namespace prefix is telerik
and the URI is http://schemas.telerik.com/2008/xaml/presentation, what is the purpose of the URI. Is there any schema that is in the mentioned URI or is it just a logical name?
Could I give xmlns:telerik="http://schemas.myexample.com
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
URI 指定架构中的数据类型和元素的来源。您可以在任意数量的其他模式定义中引用类型,这些定义是由它们的命名空间定义的。
以下是模式定义方式的简要概述: http://www.w3schools.com/schema/ schema_schema.asp。
The URI specifies where data types and elements in the schema come from. You can reference types in as many other schema definitions as you like, and those definitions are defined by their namespace.
Here is a brief rundown of how schemas are defined: http://www.w3schools.com/schema/schema_schema.asp.