我正在使用Back&作为BAA以及使用其身份验证服务。登录页面是根页,它是第一个加载的页面。虽然在我的本地计算机上使用"离子服务"授权在网络服务器上运行时无法正常运行,但在我的本地计算机上也不是在我的后台托管服务上运行。这是我正在使用的代码(直接从Back&的示例应用程序(:
this.backand.signin(this.username, this.password)
.then((res: any) => {
this.loggedInUser = res.data.username;
},
(error: any) => {
alert(error.data);
}
);
尝试登录时,我会收到一个空错误消息。有趣的是,匿名auth的工作正常(this.loggedinuser是"访客"(。
this.backand.useAnonymousAuth()
.then((res: any) => {
this.loggedInUser = res.data.username;
},
(error: any) => {
alert (error.data);
});
backand/angular2-sdk:v1.1.2
我感到有点愚蠢,但我尚未对其进行测试 - 此问题仅在我的开发机上使用Chrome时出现,如果在同一台计算机上使用任何其他浏览器,则没有问题甚至是相同的镀铬版本,但在其他机器上。抱歉浪费时间!