我使用encodeURIComponent对URL进行编码,但我在某些网址上遇到500 SERVER ERROR,我确信问题在于编码,因为删除数据完全解决了错误。
如何对URL进行编码,以便我可以在另一端检索它而不会在通话中出现问题?
$.ajax({type:'POST',url: "/insert-url.php", data: 'url='+encodeURIComponent(link)',
success:function(data_response){
}
});
答案 0 :(得分:0)
$.ajax({type:'POST',url: "/insert-url.php",
data: 'url='+encodeURIComponent(link)**-->'<---**,
success:function(data_response){
}
});
a'太多