我正在使用omniauth-facebook gem,效果很好。
但是当它在应用程序上加载回页面时,会将这些字符添加到 url:
/#_=_
我怎样才能阻止这种情况发生。
小白
我正在使用omniauth-facebook gem,效果很好。
但是当它在应用程序上加载回页面时,会将这些字符添加到 url:
/#_=_
我怎样才能阻止这种情况发生。
小白
试试这个:
<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>
试试这个:
<script type="text/javascript">
if(window.location.hash=="#_=_") window.location.href="http://yourdomain.com/";
</script>