zoukankan      html  css  js  c++  java
  • URI和URL的区别 一起学习呗

    一直存在很多技术上的争论,其中最为妙的恐怕就是web地址应该叫什么的问题。通常情况就是这样:有人把地址栏的内容叫“URL”,这时候有些人就来劲了:“不!其实那就是URI。。。”

    “URI可以分为URL,URN或同时具备locators 和names特性的一个东西。URN作用就好像一个人的名字,URL就像一个人的地址。换句话说:URN确定了东西的身份,URL提供了找到它的方式。”

    • ftp://ftp.is.co.za/rfc/rfc1808.txt (also a URL because of the protocol)
    • http://www.ietf.org/rfc/rfc2396.txt (also a URL because of the protocol)
    • ldap://[2001:db8::7]/c=GB?objectClass?one (also a URL because of the protocol)
    • mailto:John.Doe@example.com (also a URL because of the protocol)
    • news:comp.infosystems.www.servers.unix (also a URL because of the protocol)
    • tel:+1-816-555-1212
    • telnet://192.0.2.16:80/ (also a URL because of the protocol)
    • urn:oasis:names:specification:docbook:dtd:xml:4.1.2


         这些全都是URI, 其中有些是URL. 哪些? 就是那些提供了访问机制的

  • 相关阅读:
    ES6 Set.Map.Symbol数据结构
    ES6 class类 静态方法及类的继承
    ES6 浅谈Reflect
    ES6 proxy代理详解及用法
    Vue之生命周期函数
    Vue之自定义键盘修饰符、自定义指令
    v-show和v-if区别
    迭代器iterator
    es6之Proxy代理
    es6之symbol数据类型
  • 原文地址:https://www.cnblogs.com/lxs1314/p/5944234.html
Copyright © 2011-2022 走看看