开发者问题收集
我正在尝试从 firebase 获取数据,但它在应用程序加载时返回空值,但如果我在该文件上编辑某些内容,即使是注释行,那么数据也会加载并且应用程序会运行,我希望当应用程序打开时,所有数据都应该来自 firebase 以运行应用程序。以及如何以相反的顺序排列“grabbedData”,尝试了 grabbedData.reverse(),但没有用。 const Getdata = async ()
我从 firebase 登录后获取用户数据。我也将其打印在控制台上,并显示数据在这里。但是当我尝试显示它时,它没有显示。也没有错误。我从浏览器开发人员工具中检查了元素,发现该字段为空。我想显示displayName、email、emailVerified。这是显示我正在获取数据的控制台图像:我的代码import React from 'react';import { getAuth, onAuth
我的问题是通过从表单中获取信息来将数据添加到数据库。我想将信息添加为“名称”。我可以正确添加“电子邮件”,但不能添加其他数据。我的代码:buttonsignup.addEventListener('click', error => {var nameCompany = document.getElementById('nameCompany').value;var email = document
[已解决] - 如何使用Firebase进行“使用Google”按钮?我创建了我的firebase帐户,使用Google激活了身份验证,并遵循那里的步骤。现在,我该如何在我的代码中实现它?对不起,如果我不够清楚或有问题,英语不是我的母语。你们都可以帮助我?
如何在 Firebase 身份验证的错误处理函数中设置状态('this.setState({})')?它在 React Native 中不起作用。 onSignUpPress() {if (this.state.password !== this.state.passwordConfirmation ) {return this.setState({errorMessage: 'Your pas
这是我的代码... 它非常简单... 只是试图让用户通过 Facebook 进行身份验证,然后将其添加到 Firebase 系统!我应该提到我正在使用 React Native,我确实读到 Firebase 库的各个部分不适用于 React Native。const auth = firebase.auth();const provider = firebase.auth.FacebookAuth
我正在尝试创建登录用户帐户系统,但出于某种原因,它在导航到主屏幕后而不是之前识别出错误的密码。(我指的代码是 login() 函数)。我放置了控制台日志语句来确定这一点,并且“console.log(errorCode);”是最后输出的内容。有人可以解释一下我编写的代码的逻辑以及为什么只有在最后才能识别错误的密码吗?控制台输出的顺序是“登录”“导航到主页”“登录完成”“auth/错误密码?非常感谢
我正在尝试在我的 React Native 项目中初始化 Firebase。这是我遇到的错误我正在初始化它的App.js的代码是import React, {Component} from 'react';import {View, Text} from 'react-native';import {Provider} from 'react-redux';import {createStore}
我正尝试将我的 react-native 应用代码移动到更结构化的方式。最初,我将所有 firebase 函数都放在了我使用它们的文件中,但现在我想在多个地方使用它们,所以我创建了一个Database.js文件,其中包含一个 Database 类和所有函数。但出于某种原因,每当我尝试使用新类中的一个函数时,我都会收到错误“undefined 不是对象(评估'this.codesRef.once')
我是刚开始使用 react native 和 firebase,我遇到了这个错误:“TypeError:无法读取未定义的属性‘auth’”我继续将我的代码附加到图像中:我还继续复制和粘贴依赖项: "dependencies": {“@react-native-community/masked-view”:“0.1.10”,“@react-navigation/bottom-tabs”:“~5
我正在尝试在 expo 中实现 Firebase 手机身份验证。Firebase 已连接,但它给我错误 undefined 不是构造函数(正在评估“new _auth.PhoneAuthProvider()”)//send verification code smsconst sendVerificationCode = async () => {try {const phoneProvider
ReferenceError:找不到变量:auth请帮忙const handleLogin = () => {auth.signInWithEmailAndPassword(email, password).then(userCredentials => {const user = userCredentials.user;console.log('Logged in with:', user.e
我有一个专门用于处理 React Native App 身份验证功能的文件。其中一个函数getJWToken是一个匿名异步函数,它尝试通过以下方式获取当前用户令牌:const auth = db.auth()// db === (Firebase.apps.length === 0 ? Firebase.initializeApp(config) : Firebase.app())// the c
这是我的连接方法:export function connexionUser(email, password) {result = firebase.auth().signInWithEmailAndPassword(email, password).then((res) => {console.log("res: ", res)return true;}).catch(function (er
这让我有点抓狂。预期行为:我点击一个按钮 > 它触发 checkLoginStatus > 从 firebase 返回 true 或 false > 布尔值存储在 isLoggedIn > 中,即 console.log 输出实际结果:我点击按钮 > 它触发函数 > 控制台日志显示为未定义/false > 然后返回用户对象。问题:为什么我的 React 容器方法isUserAlreadyAuthe