5

我正在制作一个angular2-meteor基于Meteor v1.4and的应用程序Angular2 rc-5。到目前为止还不错,但我需要将它与我的 Firebase 数据库集成,但我得到以下异常(我在 Chrome 上运行该应用程序)。看来我所有的打字稿都很好,我没有收到任何错误,我的 Meteor 应用程序加载正常,我按照安装和设置教程直到第 4 步结束。(但是,由于我使用的是 Meteor,我没有使用角度-cli 创建项目),知道如何解决这个问题吗?谢谢

EXCEPTION: Error: This operation is not supported in the environment this application is running on. 

"location.protocol" must be http or https and web storage must be enabled.

BrowserDomAdapter.logError @ browser_adapter.js:84
BrowserDomAdapter.logGroup @ browser_adapter.js:94
ExceptionHandler.call @ exception_handler.js:65
next @ application_ref.js:348
schedulerFn @ async.js:89
SafeSubscriber.__tryOrUnsub @ Subscriber.js:225
SafeSubscriber.next @ Subscriber.js:174
Subscriber._next @ Subscriber.js:124
Subscriber.next @ Subscriber.js:88
Subject._finalNext @ Subject.js:128
Subject._next @ Subject.js:120
Subject.next @ Subject.js:77
EventEmitter.emit @ async.js:77
onError @ ng_zone.js:124
onHandleError @ ng_zone_impl.js:74
ZoneDelegate.handleError @ zone.js:368
Zone.runTask @ zone.js:297
ZoneTask.invoke @ zone.js:464
4

1 回答 1

3

您只需将 location.protocol 设置为 'http' 或 'https'。您可以通过将以下提供程序添加到您的课程中来做到这一点。

providers: [{
    provide: WindowLocation, useValue: {
        protocol: 'https' // Change to HTTP if you prefer.
    }
}]

不要忘记通过以下方式导入 WindowLocation:

import {WindowLocation} from "angularfire2";
于 2016-09-10T02:42:28.717 回答