我正在尝试将使用过的UID添加到实时数据库中,但当我这样做时,UID返回时是定义的,我不确定这是为什么。
这是我的JS
var userUID;
firebase.auth().onAuthStateChanged(function (user) {
if (user) {
userUID = user.uid;
} else {}
});
//Creating the Database for the Users using realtime mf (SAVE THE DATABSE INFO)
在我的servlet/jsp应用程序中,我将用户名、密码、user_role存储在数据库中,并且我的应用程序在端口8080上运行。我有一个在端口8081上运行的node js应用程序,以实现一些实时应用程序。我在我的node js应用中使用了express和socket.io。我的两个应用程序都运行在windows server 2008上。
在我的node js app中,在运行以下代码之前:
io.sockets.on('connection', function (socket) {
//check if user is logged in jsp app t
我正在尝试做一些关于火基实时数据库的事情,但是我得到了这样一个错误,你能帮上忙吗?
throw e;
^
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in C:\Users\efeba\Desktop\test2\node_modules\firebase\package.json
at throwExportsNotFound (internal/modules/esm/resolve.js:299:9)
at packageExportsResol