2

Angularjs で Cookie を削除できないようです。何が間違っている可能性があります..彼女はコードです..

$scope.adminLogout = function(){
    $http({
        url: '/AdServerLongTail/adminapi/logout',
        method: "POST",
        dataType:"json",                                
        }).success(function (data, status, headers, config) {
            console.log("success");
            delete $cookies["username"]; 
            delete $cookies["JSESSIONID"];                
            $rootScope.welcome=null;
            $location.path("/admin");                
        }).error(function (data, status, headers, config) {
           console.log("error");               
   });          
}

html

<li><a href="#" ng-click="adminLogout()">LOGOUT</a></li>
4

1 に答える 1