我正在尝试重新定义我的所有应用数据库引用,以便我可以编写一组特定的firebase规则(我需要在其中添加建筑物和 depts 节点用户节点 - 阅读原因:What is the best practice to write the rules of Firebase in a situation like this?)。
我正在使用 firebase-config.js 并将我应用程序的所有数据库引用导出到应用程序的组件中,所以如果我改变这条路径,我就不会这样做。必须重构所有应用程序组件上的代码。
我正在尝试使用函数(在我的firebase-config.js文件中):
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,并且将建筑物写入未定义节点。
{
"users" : {
"6hwNde08Wuaa9bfReR28niSbOsF3" : {
"name" : "João Alves Marrucho",
"userEmail" : "joaoalvesmarrucho@hotmail.com"
},
"undefined" : {
"-L9M4lM7oZFfmJKorxjC" : {
"address" : "",
"name" : "b1",
"ownerID" : "6hwNde08Wuaa9bfReR28niSbOsF3"
}
}
}
}
我使用以下方法(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 返回未定义的任何想法?
以下是我的完整 firebase-config.js 文件:http://jsfiddle.net/UnXrw/85/
答案 0 :(得分:0)
如果我理解你的问题,我想你想要这样的事情:
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
}
});