firebase auth回叫处理任何页面的身份验证

时间:2019-01-25 13:03:29

标签: angular firebase firebase-authentication

我有一个使用Firebase身份验证和页面重定向的应用程序。
在任何我要处理授权的页面上,我的意思是:

  • myapp.com/posting
  • myapp.com/index
  • myapp.com/listing/item/1

到目前为止,我可以使用Resolving

然后在我的相关component.ts中:

  ngOnInit() {
    this.route.data.subscribe(() => {
      callCommonFunction();// that will create app bases session
    });
  }

更好的是,我可以使用基类调用通用函数的继承来代替调用通用函数。

我可以期望有一种解决方案,可以作为angular中的拦截器:拦截对服务器的所有调用并执行一些常用功能。

最后,我正在寻找最佳解决方案,一个可以处理任何回叫页面的通用层会做一些常见的操作,作为firebase auth回调。

对不起,如果已经revolving个最佳解决方案

0 个答案:

没有答案