我有问题获得存储参考,即使我根据文档配置了firebase-app。firebase-app元素位于index.html
中<firebase-app name="name-of-the-app"
api-key="api_key"
auth-domain="name-of-the-app.firebaseapp.com"
database-url="https://name-of-the-app.firebaseio.com"
storage-bucket="name-of-the-app.appspot.com">
</firebase-app>
我正在以下方式访问该子视图中的应用参考:
<firebase-document id="office_document"
app-name="doctor-appointment-system"
path="/offices">
</firebase-document>
<script>
this.$.office_document.app.storage()
</script>
上面的代码正在抛出A错误。
这个。
数据库对应物的工作正常。
this.$.office_document.app.database()
问题是我没有在index.html中导入的firebase存储脚本,其中应用程序是用firebase-app元素初始化的。
这是我现在的进口状况:
<link rel="import" href="/bower_components/polymerfire/firebase-app.html">
<link rel="import" href="/bower_components/polymerfire/firebase-storage-script.html">
<link rel="import" href="/bower_components/polymerfire/firebase-document.html">