decodeURIComponent解释
时间: 2024-06-21 22:03:05 浏览: 219
encodeURIComponent编码后java后台的解码
decodeURIComponent() 函数用于解码已编码的 URI。它将已编码的字符串作为参数,并将其转换为原始的字符串。在 JavaScript 中,通过 encodeURIComponent() 函数对 URI 进行编码,而使用 decodeURIComponent() 函数对编码后的 URI 进行解码。例如,如果一个 URI 包含了一些特殊字符或者中文字符,那么在传递给服务器之前需要使用 encodeURIComponent() 对这些字符进行编码,然后在接收到服务器返回的编码后的 URI 后,需要使用 decodeURIComponent() 对其进行解码,才能得到原始的 URI。
阅读全文