我想在我的钩子上添加 this.props.navigate。这个不在我的类组件中,所以我有这个错误TypeError:undefined 不是对象(评估“_this.props.navigation”)我如何在顶部传递构造函数 props?还有我的钩子function LoginApp() {// Set an initializing state whilst Firebase connect
2021-02-11
导航到另一个页面时,它给出未定义的错误。通常没有做出任何更改。我删除了 node_modules 并重新安装。我重置了代码。我删除了项目并重新启动。但没有解决方案。TypeError:未定义不是对象(评估“options.routeGetIdList[action.payload.name]”)import { Button, View, Text } from 'react-native';im
2021-02-03
当我尝试根据用户关注的不同用户 ID 整理帖子提要时,我遇到了以下错误。Possible Unhandled Promise Rejection (id: 0):TypeError: undefined is not an object (evaluating 'snapshot.query.EP.path')我正在使用 redux & firebase/firestore,错误发生在以下操作的第
2021-01-26
在 React Native 中尝试setState时出错。代码import React from "react";import { TextInput, Text, View, Button, Alert } from "react-native";const UselessTextInput = () => {state = { currentDate: "" };const setCuren
2021-01-23
每当我尝试导航到另一个屏幕时,我都会遇到问题。我在子组件中使用导航,即使我将 props 传递给父组件,它也不起作用。这是我第一次使用 React Navigation。我尝试了许多可能的解决方案,但仍然无法解决这个问题。我正在使用 React Navigation 5,我需要帮助。我收到这样的错误:TypeError: undefined is not an object (evaluating
2021-01-22
升级 Expo SDK 时参考了 SDK 40 升级帖中的“弃用、重命名和删除”部分,从 SDK39 升级到 SDK40,结果出现错误。expo diagnosticsExpo CLI 4.0.17 environment info:System:OS: macOS 11.1Shell: 5.8 - /bin/zshBinaries:Node: 14.5.0 - /usr/local/bin/no
2021-01-22
成功实现套接字后,我现在可以从一个屏幕到另一个屏幕监听我的事件。我现在的问题是我想显示我在 flatlist 中获得的新对象。这是新的 msg 对象:messages: Object { “conversationId”:33,“message”:“Heyy”,“receiverId”:43,“senderId”:53, }这是我的代码:const [listings, setListings]
2021-01-18
我正在使用setTimeout函数,该函数在使用setState的布尔状态之间交替循环运行。但是,当在函数中调用this.setState时,我收到以下错误:TypeError: undefined is not an object (evaluating:'this.state.percentages')以下是我正在使用的代码片段 - 如果有人能指出我所犯的错误,我将不胜感激:construct
2021-01-15
我正尝试使用下面的两个功能组件向 enpoint 发出 GET 请求,以在我的 React Native Deck Swipper 中显示//using fetchconst getDataUsingFetch = () => {fetch(latestNews+ApiKey).then((response) => response.json()).then((responseJson) => {
2021-01-07
我阅读了很多 SO 和 GitHub 问题上的答案,试图实施解决方案,但无法针对这种情况提出解决方案。这是我的代码的表示:class MeetingsScreen extends React.Component {constructor(props) {super(props)this.state = {upcomingMeeting: [],refreshing: false};}async h
2021-01-03
使用 React Image Picker 时我遇到了这个错误:TypeError:undefined 不是对象(评估“_reactNativeImagePicker.default.showImagePicker”)这是我点击图像选择器功能时发生的情况移动屏幕截图:这是我的代码:import React from 'react';import { View, Text,Button } from
2021-01-03
我已经实现了 useReducer 来根据操作类型分派操作,并且每次我都会根据操作类型更新状态变量,但在尝试读取初始状态时总是会出错。可能我的代码可以解释更多。我在尝试读取 initialLoginState.isLoading 时收到错误。App.js 代码:import * as React from 'react';import { NavigationContainer } from '@
2020-12-12
在 Mac 上运行 npm install -g react-native 项目时出现 TypeError。完整错误TypeError:无法解构“undefined”或“null”的属性stat。在 Object。(/usr/local/lib/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js:2:29)
2020-12-10
我目前正在开发一款小型应用,我想将相机胶卷中的图像加载到应用中。我已经在 Expo Image Picker 文档的帮助下构建了一个组件来实现这一点。遗憾的是,我的 expo 客户端中总是出现以下警告,我无法从相机胶卷中选择任何图像。当我单击按钮选择它们时,它只是保持原样。我的代码:import React, {useEffect, useState} from 'react';import {
2020-12-02
我是 React Native 和 Redux 的新手,我收到了一个错误消息,我真的很难处理。这是我收到的错误TypeError: undefined is not an object (evaluating '(0,_reactRedux.useSelector)(function (state) {return state.myPigeons.myPigeons;}).length')我将在这
2020-11-28