我想在不重新加载页面的情况下注销用户,只需更新一些 div。这就是我所拥有的,但显然不起作用。只有在重新加载页面后会话才会取消。
$.ajax({
url: "logout.php",
method: "post",
data: "account_type=twitter",
success: function () {
/*****do something***********/
}
});
在注销.php
<?php
session_start();
if(isset($_POST['account_type']) && $_POST['account_type'] == "twitter") {
unset($_SESSION['twitterId']);
unset($_SESSION['twitterName']);
unset($_SESSION['twitterPic']);
unset($_SESSION['twitterUrl']);
unset($_SESSION['access_token']);
unset($_SESSION['token_oauth']);
header("Location: index.php");
}
?>
一些帮助将不胜感激。谢谢!