0

我正在使用omniauth-facebook gem,效果很好。

但是当它在应用程序上加载回页面时,会将这些字符添加到 url:

/#_=_

我怎样才能阻止这种情况发生。

小白

4

2 回答 2

0

试试这个:

<script type="text/javascript">
            if (window.location.hash == '#_=_')window.location.hash = ''; //this script removes the #_=_ from the url which is appended by facebook after login
</script>
于 2013-03-12T09:56:06.413 回答
0

试试这个:

<script type="text/javascript">
if(window.location.hash=="#_=_") window.location.href="http://yourdomain.com/";
</script>
于 2013-03-12T23:40:16.980 回答