开发者问题收集
我在我的 React Native 应用程序中使用 firebase auth(通过 expo),身份验证通过观察者(包括持久用户)正常工作:import firebase from "firebase";firebase.auth().onAuthStateChanged(user => {if (user) {this.props.setUser(user);}}).bind(this);我显
我为我的 React 应用创建了一些自定义 Firebase 函数,因此我不必每次都编写整个代码。问题是,当有一个要返回的值(例如用户 JSON)时,当我从另一个文件调用时它不会返回该值。以下是一段不起作用的代码:Functions.jsimport * as firebase from 'firebase'const AuthState = () => {firebase.auth().onAu
我有这个自定义钩子来从 firebase 获取当前用户:import React, { Component, useEffect, useState } from 'react';import { auth } from "../firebase/auth-service"const useFirebaseAuthentication = (firebase) => {const [authUse