如何对 URL 进行编码以将其作为 GET 参数传递
我加载一个 JavaScript 文件,该文件将当前页面的 URL 作为参数。这是我使用的代码:
document.write(unescape('%3Cscript src=\"' + _vis_opt_protocol + 'domain.com/js.php&a='+account_id+'&url='+encodeURIComponent(document.URL)+'&random='+Math.random()+'\" type=\"text/javascript\"%3E%3C/script%3E'));
我认为encodeURIComponent 会完成正确编码URL 的工作。然而,在加载 JS 文件时,浏览器也会解释编码的 URL。例如,如果 document.URL 为 http://example.com/?test=1#nono< /a> 然后浏览器将 test 解释为 JS 的另一个参数,并且不会在 #nono 之后(包括)发送任何内容,因为它认为它是一个锚点。
对 URL 进行编码以便将其按原样传递到服务器的最佳方法是什么?我也在尝试使用 base64 或其他形式的编码。
I load a JavaScript file which takes current page's URL as a parameter. Here is the code I use:
document.write(unescape('%3Cscript src=\"' + _vis_opt_protocol + 'domain.com/js.php&a='+account_id+'&url='+encodeURIComponent(document.URL)+'&random='+Math.random()+'\" type=\"text/javascript\"%3E%3C/script%3E'));
I thought encodeURIComponent will do the job of properly encoding the URL. However, while loading JS file, browsers interpret the encoded URL too. For example if the document.URL is http://example.com/?test=1#nono then the browser interprets test as another parameter to JS and doesn't send anything after (and including) #nono because it thinks it is an anchor.
What is the best way to encode the URL so that it is passed as it is to the server? I was also toying with base64 or some other form of encoding.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是您调用的 unescape 函数撤消了 encodeURIComponent 的工作。你可以试试这个:
The problem is that the
unescape
function you are calling undoes do job ofencodeURIComponent
. You may try this: