0

以下は、encodeURIComponentで削除しようとしているURLのスペースを使用してリダイレクトしています。

誰かが私が間違っていることを私に見せてもらえますか?

編集:以下の提案に従って、私はスクリプト全体を投稿しています...

<script>        
window.fbAsyncInit = function() {
    FB.init({
        appId   : '<?php echo $AppID; ?>',
        oauth   : true,
        status  : true, // check login status
        cookie  : true, // enable cookies to allow the server to access the session
        xfbml   : true // parse XFBML
    });

  };

function fb_login(){
    FB.login(function(response) {

        if (response.authResponse) {

            FB.api('/me', function(response) {
                //Ajax Loader       
                     $.post("addtodb.php",
                     {name: response.name, email:response.email},
                        function(data) {
                        window.location.href = "next.php?name="+escape(response.name)+"&email="+(response.email); //redirect after post callback
                     })
            });

        } else {
        }
    }, {
        scope: 'email'
    }
    );
}
  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>
4

1 に答える 1

2
escape('foo bar');//foo%20bar
encodeURI('foo bar');//foo%20bar
encodeURIComponent('foo bar');//foo%20bar

これら 3 つの例はうまく機能します。そうでない場合は、エラーの原因となっているコードが他にないことを確認するか、スクリプト全体をここに投稿してください

于 2012-05-09T01:03:25.763 に答える