JS对url举行编码和解码(三种体式格局)

escape 和 unescape

escape()不能直接用于URL编码,它的真正作用是返回一个字符的Unicode编码值

它的详细规则是,除了ASCII字母、数字、标点标记”@ * _ + – . /”之外,对其他一切字符举行编码。在u0000到u00ff之间的标记被转成%xx的情势,其他标记被转成%uxxxx的情势。对应的解码函数是unescape()。

另有两个点须要注重

  1. 起首,不管网页的原始编码是什么,一旦被Javascript编码,就都变成unicode字符。也就是说,Javascipt函数的输入和输出,默许都是Unicode字符。这一点对下面两个函数也实用。
  2. 其次,escape()不对”+”编码。然则我们晓得,网页在提交表单的时刻,如果有空格,则会被转化为+字符。服务器处置惩罚数据的时刻,会把+号处置惩罚成空格。所以,运用的时刻要警惕。
escape()编码:

const time = 2018-02-09
const tile = '63元黑糖颗粒固饮'
let url = “http://localhost:8080/index.html?time="+escape(time)+"&title="+escape(tile)
地址栏显现效果:
    “http://localhost:8080/index.html?time=2018-01-09&title=63%u5143%u9ED1%u7CD6%u9897%u7C92%u56FA%u996E"
unescape()解码:

let url = “http://localhost:8080/index.html?time="+unescape(2018-01-09)+"&title="+unescape(63%u5143%u9ED1%u7CD6%u9897%u7C92%u56FA%u996E)
地址栏显现效果:
   “http://localhost:8080/index.html?time=2018-01-09&title=63元黑糖颗粒固饮"

encodeURI 和 decodeURI

encodeURI()是Javascript中真正用来对URL编码的函数。

它用于对URL的组成部分举行一般编码,除了罕见的标记之外,对其他一些在网址中有特别寄义的标记”; / ? : @ & = + $ , #”,也不举行编码。编码后,它输出标记的utf-8情势,并且在每一个字节前加上%。
它对应的解码函数是decodeURI()

须要注重的是,它不对单引号’编码。

let url = "http://localhost:8080/index.html?time=2018-01-09&title=63元黑糖颗粒固饮"

encodeURI()编码:
let encodeURI_url = encodeURI(url) = "http://localhost:8080/index.html?time=2018-01-09&title=63%E5%85%83%E9%BB%91%E7%B3%96%E9%A2%97%E7%B2%92%E5%9B%BA%E9%A5%AE"

decodeURI()解码:

decodeURI(encodeURI_url )= “http://localhost:8080/index.html?time=2018-01-09&title=63元黑糖颗粒固饮”

encodeURIComponent 和 decodeURIComponent

与encodeURI()的区别是,它用于对全部URL举行编码。”; / ? : @ & = + $ , #”,这些在encodeURI()中不被编码的标记,在encodeURIComponent()中一切会被编码。
它对应的解码函数是decodeURIComponent()。

let url = "http://localhost:8080/index.html?time=2018-01-09&title=63元黑糖颗粒固饮"

encodeURIComponent ()编码:

let encodeURIComponent _url = encodeURIComponent (url) = http%3A%2F%2Flocalhost%3A8080%2Findex.html%3Ftime%3D2018-01-09%26title%3D63%E5%85%83%E9%BB%91%E7%B3%96%E9%A2%97%E7%B2%92%E5%9B%BA%E9%A5%AE

decodeURIComponent()解码:

decodeURIComponent(encodeURIComponent _url )= “http://localhost:8080/index.html?time=2018-01-09&title=63元黑糖颗粒固饮”
    原文作者:xshaohua
    原文地址: https://segmentfault.com/a/1190000013236956
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞