我使用 encodeURIComponent 对 URL 进行编码,但在某些 url 上出现 500 SERVER ERROR,我确定问题出在编码中,因为删除数据完全解决了错误。
如何对 URL 进行编码,以便我可以在另一端检索它并且在通话中没有问题?
$.ajax({type:'POST',url: "/insert-url.php", data: 'url='+encodeURIComponent(link)',
success:function(data_response){
}
});