我有一个简单的表单,可以生成一个新的照片库,将标题和描述发送给MySQL,并将用户重定向到他们可以上传照片的页面。
在&符号进入等式之前,一切正常。信息从jQuery模式对话框发送到PHP页面,然后将该条目提交到数据库。 Ajax成功完成后,用户将被发送到带有GET URL的上传页面,告诉该页面上传的是哪个相册 -
$.ajax ({
type: "POST",
url: "../../includes/forms/add_gallery.php",
data: $("#addGallery form").serialize(),
success: function() {
$("#addGallery").dialog('close');
window.location.href = 'display_album.php?album=' + title;
}
});
如果标题有&符号,则上传页面上的标题字段无法正常显示。有没有办法逃脱&符号GET?
由于
答案 0 :(得分:13)
一般情况下,当您将其作为网址的一部分传递时,您需要URL-encode任何非完全字母数字的内容。
在网址编码中,&
被替换为%26
(因为0x26 = 38 = &
的ASCII代码。)
要在Javascript中执行此操作,您可以使用函数encodeURIComponent
:
$.ajax ({
type: "POST",
url: "../../includes/forms/add_gallery.php",
data: $("#addGallery form").serialize(),
success: function() {
$("#addGallery").dialog('close');
window.location.href = 'display_album.php?album=' + encodeURIComponent(title);
}
});
请注意,escape
的缺点是+
未编码,并且将在服务器端解码为空格,因此应该避免(source)。
如果您希望在PHP级别执行此服务器端,则需要使用函数urlencode
。
答案 1 :(得分:1)
window.location.href = 'display_album.php?album=' + encodeURIComponent(title);
javascript escape
函数不会对这些字符进行编码:* @ - _ +。 /。因此,如果您有“this + that”这样的标题,加号将被解释为空格,PHP将接收变量“this that”。
使用encodeURIComponent
还会对以下字符进行编码:,/? :@& = + $#