Wakanda离子应用程序会议

时间:2016-05-04 19:49:18

标签: angularjs session ionic-framework wakanda

我正在使用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
        }

    })

提前致谢! 碧玉

1 个答案:

答案 0 :(得分:2)

您必须在项目设置中启用CORS并添加127.0.0.1:8100然后才会存储会话。 enter image description here

问候。