开发者问题收集
我不明白为什么每次我创建或订阅帖子时,我都无法呈现任何获取函数,并且出现 TypeError:undefined 不是对象(评估“e.type”)。所以这里有一些代码。我有一个 rails API 和一个 react native 在其中获取数据。当我使用 Sub 或创建 rails 时,会向我发送状态 200 消息,所以它可以工作。但如果我返回我的 feedlist 并选择任何帖子或尝试注销,我
import React from 'react';import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';import { enableScreens } from 'react-native-screens';import { createNativeStackNavigator } from 'reac
我目前正在开发一个 React Native 应用,我遇到了一个关于从数据库中获取渲染信息(在数组中)的问题。为此,我必须编写一个.map。我从console.log中的获取数据中接收数据。当我用这个“()”调用我的函数时。<Text>Choisissez votre Choix Club </Text><TouchableOpacity><View><Text>{this.renderMesCl
在我的 App.js 中:const initialAppState = {nums: {},};const reducer = (state = initialAppState, action) => {if (action.a === undefined ||action.b === undefined ||action.c === undefined) {return state;}if (
我需要将我的类组件代码转换为功能挂钩组件。我有下面的类组件逻辑可以工作。但是,为了实现Context Api,我需要将其转换为挂钩。当我在控制台记录它时,我得到storeList未定义,并且此错误...TypeError:未定义不是对象(评估'storeList'.map)。有没有办法让我在 UseEffect 中引入state?提前谢谢您const { data, status } = useQ
这是我的主页代码:import React from "react";//More Importsexport default class Home extends React.Component {//Some Coderender() {const { navigation } = this.props;return (<ScrollView>//Some Code<View style={s
收到此错误:TypeError: undefined is not an object (evaluating 'doc.data().books')来自此代码:const getData = () => {const snapshot = db.collection('users').doc(userEmail).onSnapshot((doc) => {setData(doc.data().b
我最近开始了一个 React Native 项目,并且在映射 JSON 对象方面遇到了很多困难。我浏览了很多帖子,但每次都收到相同的错误。下面是我在映射 JSON 时使用的几个代码片段getUserNotifications = () => {var uname = this.state.userName;fetch('https://examp.le/endpoint?getNotificati
export default function App ({navigation})有一个函数以 <Stack.Navigator> 开头并包含它。但是当我想使用导航功能并在 onPress 中使用“navigation.navigate ('Lead')”时TypeError: undefined is not an object evaluating react navigation我收到错误
在我的UserProductsScreen.js文件中,我传递了一个参数 id,以便可以在导航中选择它:const UserProductsScreen = props => {const userProducts = useSelector(state => state.products.userProducts);// Navigate to EditProductconst editProd
我试图在 React-Native 中将一些数据作为字典 /JSON 存储在 JS 中。我已经定义了这样的字典:const [item, setItem] = useState({});function onUpdate(id, quantity) {console.debug('tab index : ' + tabIndex);console.debug('id : ' + id);conso
我对 React Native 完全陌生,我正在为我们的一位客户构建一款应用。我创建了一个屏幕,其中显示了可以按字母顺序或按类别分组显示的名称列表。我使用了react-native-tab-view组件来实现此功能。两个选项卡中的每一个都呈现它们各自的屏幕组件,ScreenMapAlpha(显示 FlatList)和ScreenMapCategory(显示 SectionList)。对于这些列表的
我使用 AsyncStorage 来存储和检索对象数组。数组的结构如下:const tracks = [{title: title1,exercises: [{object1Info...},{object2Info...}]},{title: title2,exercises: [{object1Info...}]},{title: title3,exercises: [{object1Info
我正在使用 React Native 和 React Navigation。我试图只将其中一个屏幕设为mode="Modal,但导航时传递的路由参数显示“未定义”,错误为TypeError: undefined is not an object (evaluating 'route.params.title')。这是为什么?我该如何修复?我的尝试const ModalScreen = () =>
[未处理的承诺拒绝:TypeError:未定义不是对象(评估“this.state.result.map”)]。每当我尝试从 api 获取数据时,我都会收到此错误。此外,在下面的代码中,我使用了 val.Global,其中 Global 是包含所有数据的标题。有人能告诉我我的代码中有什么问题吗?import React from 'react';import {View, Text, Activi