应该使用这两种方法中的哪一种来编码URL?
"encodeURIComponent() and encodeURI() encode a URI by replacing URL reserved characters with their UTF-8 encoding....They differ because encodeURI does not encode queryString or hash values...URLs do not allow many special characters, like spaces or slashes. However these special characters are part of life, so URL encoding was invented."
来源
encodeURIComponent differs from encodeURI as follows
为: developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…的