1

我使用 encodeURIComponent 对 URL 进行编码,但在某些 url 上出现 500 SERVER ERROR,我确定问题出在编码中,因为删除数据完全解决了错误。

如何对 URL 进行编码,以便我可以在另一端检索它并且在通话中没有问题?

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

1 回答 1

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

一个'太多

于 2012-10-14T09:11:30.593 回答