Polymerfire生产错误

时间:2016-12-17 15:33:50

标签: firebase polymer firebase-authentication polymerfire

我的项目在本地工作正常,当我将其部署到Firebase Hosting时。也适用于Edge,但在部署时无法在Chrome中运行。我收到如下所示的错误。我认为" auth"过程从未结束,但我不知道原因:(

enter image description here

代码非常简单:

signIn: function () {
  var that = this;
  this.$.auth.signInWithPopup()
    .then(function (res) {
      that.fire('feedback-positivo', 'Has iniciado sesión');
      that.saveProfile(res.user, res.credential);
    })
    .catch(function (error) {
      console.log('Error', error.message, error.code);
    });
},

0 个答案:

没有答案