loginService.islogged()
Вышеупомянутая функция возвращает строку типа «сбой». Однако, когда я пытаюсь запустить эту функцию, она вернет ошибку
TypeError: Cannot read property 'then' of undefined
и курсор указывает сразу после connected
и перед .then
.
Ниже представлена полная функция:
var connected=loginService.islogged();
alert(connected);
connected.then(function(msg){
alert("connected value is "+connected);
alert("msg.data value is "+msg.data);
if(!msg.data.account_session || loginService.islogged()=="failed")
$location.path('/login');
});
ОБНОВИТЬ
Вот islogged()
функция
islogged:function(){
var cUid=sessionService.get('uid');
alert("in loginServce, cuid is "+cUid);
var $checkSessionServer=$http.post('data/check_session.php?cUid='+cUid);
$checkSessionServer.then(function(){
alert("session check returned!");
console.log("checkSessionServer is "+$checkSessionServer);
return $checkSessionServer;
});
}
Я уверен, что это $checkSessionServer
приведет к "неудачной" строке. Ничего более.
promise
здесь нет.