我正在使用Ionic框架和Wakanda构建移动应用程序。如果我登录移动应用程序,则不会存储会话。有谁知道登录后会话丢失的原因?
(使用网页登录确实有效)
$wakanda.$login("username", "password").$promise.then(function(e) {
if (e.result === true) {
$wakanda.$currentUser().$promise.then(function(e){
console.log(e)
// e.result == null, so the session isn't stored.
})
} else {
//Wrong username/password
}
})
提前致谢! 碧玉