开发者问题收集
错误:TypeError:未定义不是对象(评估“this.props = props”)在 node_modules/react-native/Libraries/Core/ExceptionsManager.js:104:6 中的 reportException在 node_modules/react-native/Libraries/Core/ExceptionsManager.js:172:
我正在尝试使用 Constants.statusBarHeight 将视图与 react-native 中的状态栏分开,我使用expo install expo-constants安装了 Constants,但是我收到此错误:TypeError: undefined is not an object (evaluating '_expoConstants.Constants.statusBarHe
我在 React Native 中遇到了这个问题。一切都运行正常,直到我决定通过yarn install重新运行项目。这是完整的错误TypeError: undefined is not an object (evaluating '_expoModulesCore.NativeModulesProxy.ExpoSplashScreen')at node_modules\react-native\
我正在使用 Firebase v9 开发一个 Expo React Native 项目。出于某种原因,我能够在 Firestore 中监听“chats”集合并成功将它们 console.log 或设置为变量,但是当我尝试将它们设置为某个状态时,我收到此错误:“TypeError:_firebase.db.collection 不是函数。(在 '_firebase.db.collection("ch
import React, {useState, Component, useMemo} from 'react';import { StyleSheet, Text, View, Button, TextInput, Image } from 'react-native';import { NavigationContainer } from '@react-navigation/native'
我是 react-native 的新手。为了学习,我创建了一个示例项目。我想通过按下抽屉内的文本导航到另一个页面。所以我遇到了错误TypeError: undefined is not an object (evaluating '_this.props.navigation.navigate')我添加了示例代码import React,{Component} from "react";impor
我有一个 React Native IOS 应用程序,在导航到另一个页面时出现未定义的错误。下面是我声明了“设置”屏幕的导航器。FRNavigator.jsimport React from 'react';import { View,StyleSheet,SafeAreaView,Button,ScrollView,Text} from 'react-native';import { creat
我尝试从 topTab 导航导航到 Stack Navigation 上的屏幕,但找不到解决方法。我尝试使用 navigation.getParent(),但它会抛出此错误TypeError: undefined is not an object (evaluating 'navigation.getParent().navigate')以下是我的代码,需要正确解释:<Stack.Navigato
我正在开发一个 React Native 应用程序。我的要求是以表格格式显示来自 API 的数据。我正在使用 react-native-table-component。我无法遍历数组来显示表中的数据。下面是我的代码:TargetSetUpPage.js:import React, { useEffect } from "react";import { StyleSheet, Text, Butto
我正在使用 React Native 开发一款应用。使用 formik 制作表单时,我收到此错误“TypeError:undefined 不是对象(正在评估‘_useFormikContext.errors’)”import { useFormikContext } from "formik";import { ErrorMessage } from "./index";import ImageI
我很难处理这个错误,因为以前一切都运行正常,但现在它却说它已被弃用。有人能帮我解决错误吗?因为它根本不起作用,我尝试了 App State 文档中的新代码,但仍然出现相同的错误TypeError:undefined 不是对象(评估“appState.remove”)这是我的代码:constructor(props) {super(props);this.state = {region: null,
所以我目前正在开发一个 React Native 应用程序,但我收到了这个错误。我认为这可能与我正在使用的某些库的版本有关,但我不确定。这是我的 app.js 文件import { StatusBar } from 'expo-status-bar';import React from 'react';import { StyleSheet, Text, View } from 'react-na
我的登录页面import React, { useState } from 'react'import { TouchableOpacity, StyleSheet, View, ImageBackground } from 'react-native'import { Text } from 'react-native-paper'import Logo from '../Component/L
我正在使用 react-navigator 4.x,并且只有一个页面需要导航,但是当我在照片页面中单击 <Button onPress={() => {props.navigation.navigate({ routeName: 'Login' })}} title="Go To" /> 时,出现此错误:import React, { useEffect, useRef } from 'react
当我尝试使用 @react-navigation/bottom-tabs 时,出现以下错误:Error: Requiring unknown module "undefined". If you are sure the module exists, try restarting Metro. You may also want to run `yarn` or `npm install`.Mat