编码AJAX POST数据的URL

时间:2012-10-14 06:52:15

标签: javascript ajax

我使用encodeURIComponent对URL进行编码,但我在某些网址上遇到500 SERVER ERROR,我确信问题在于编码,因为删除数据完全解决了错误。

如何对URL进行编码,以便我可以在另一端检索它而不会在通话中出现问题?

    $.ajax({type:'POST',url: "/insert-url.php", data: 'url='+encodeURIComponent(link)',
        success:function(data_response){
            }
        });

1 个答案:

答案 0 :(得分:0)

$.ajax({type:'POST',url: "/insert-url.php", 
        data: 'url='+encodeURIComponent(link)**-->'<---**,
        success:function(data_response){
        }
});

a'太多