是否可以在firebase数据库引用路径上定义变量? [英] Is it possible to define a variable on the firebase database references path?

查看:91
本文介绍了是否可以在firebase数据库引用路径上定义变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试重新定义我的所有应用数据库引用,以便我可以编写一组特定的firebase规则(我需要在其中添加建筑物 depts 节点用户节点 - 阅读原因:在这种情况下编写Firebase规则的最佳做法是什么?)。

I am trying to redefine all my apps database references so that I can write a specific set of of firebase rules (I need to add buildings and depts nodes inside the user node – read why: What is the best practice to write the rules of Firebase in a situation like this? ).

我正在使用 firebase-config.js 并将我应用程序的所有数据库引用导出到应用程序的组件中,所以如果我改变这条路径,我希望如此不必重构所有应用程序组件上的代码。

I am using a firebase-config.js and exporting all my app's database references to the app's components so hopefully if I change this path I don't have to refactor the code on all the app's components.

我正在尝试使用函数(在我的firebase-config.js文件中):

I am trying to do it with a function (on my firebase-config.js file):

import * as firebase from "firebase";
import { mapState } from 'vuex';
import { store } from './store/store';


var config = {
    apiKey: "XXXXXXXX",
    authDomain: "XXXXXXXX.firebaseapp.com",
    databaseURL: "https://XXXXXXXX.firebaseio.com",
    projectId: "XXXXXXXX",
    storageBucket: "XXXXXXXX.appspot.com",
    messagingSenderId: "XXXXXXXX"
};
firebase.initializeApp(config)
export default !firebase.apps.length ? firebase.initializeApp(config) : firebase;

firebase.auth().onAuthStateChanged((user) => {
    if (user) {
       let userRef = firebase.database().ref('users').child(user.uid);
       let buildingsRef = userRef.child('buildings'); 
    }
})();
export const db = firebase.database(); 
export const usersRef = db.ref('users');
_// BUT THIS: "buildingsRef" is returning undefined!!! :(
export const buildingsRef = db.ref('users'+ "/" + buildingsRef) //buildingsRef is a variable
export const deptsRef = db.ref('depts');

buldingsRef 变量返回undefined并且正在编写建筑物未定义的节点。

The buldingsRef variable is returning undefined and it's writing the buildings to an undefined node.

{
  "users" : {
    "6hwNde08Wuaa9bfReR28niSbOsF3" : {
      "name" : "João Alves Marrucho",
      "userEmail" : "joaoalvesmarrucho@hotmail.com"
    },
    "undefined" : {
      "-L9M4lM7oZFfmJKorxjC" : {
        "address" : "",
        "name" : "b1",
        "ownerID" : "6hwNde08Wuaa9bfReR28niSbOsF3"
      }
    }
  }
}

我写信给节点以下方法(vue.js):

I writing to the node with the following method (vue.js):

addBuilding: function () {
  let userId = firebase.auth().currentUser.uid;
  let buildingKey = buildingsRef.push().key
  this.newBuilding.ownerID = userId;
  buildingsRef.child(buildingKey).set(this.newBuilding);
}

关于为什么变量 buildingsRef 正在返回的任何想法未定义?

Any thoughts on why the variable buildingsRef is returning undefined?

这是我的完整 firebase-config.js 文件: http://jsfiddle.net/UnXrw/85/

推荐答案

如果我理解你的问题,我想你想要这样的事情:

If I understand your question, I think you want something like this:

firebase.auth().onAuthStateChanged(user => {
  if (user) {
    let userRef = firebase.database().ref('users').child(user.uid);
    let buildingsRef = userRef.child('buildings');
    // now do whatever you want with those refs
  }
});

这篇关于是否可以在firebase数据库引用路径上定义变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆