我在这里定义了一个接口:interface Notification {fullDate: string;weekday: string;info: {title: string;subtitle: string;read: boolean;};}后来,我定义了一个该类型的 const:const orderedNotifications: { [month: string]: Notificat
2021-10-07
所以我目前正在开发一个 React Native 应用程序,但我收到了这个错误。我认为这可能与我正在使用的某些库的版本有关,但我不确定。这是我的 app.js 文件import { StatusBar } from 'expo-status-bar';import React from 'react';import { StyleSheet, Text, View } from 'react-na
2021-10-06
我的登录页面import React, { useState } from 'react'import { TouchableOpacity, StyleSheet, View, ImageBackground } from 'react-native'import { Text } from 'react-native-paper'import Logo from '../Component/L
2021-10-05
摘要上下文实际行为(问题)预期行为最小、可测试、可执行示例数据来源注释线索上下文我正尝试在 Svelt Webapp 中使用 Axios 从 URLhttp://localhost:1337/restaurants获取 JSON 对象列表。此调用预计在初始化 Svelte 组件时执行,类似于 Svelte 教程:https://svelte.dev/tutorial/await-blocks。实际
我正在使用 REACT 构建电影 API,当我在本地加载页面时,我不断收到错误消息“TypeError:undefined 不是对象(评估‘movies.map’)”。import React from 'react';import axios from 'axios';import PropTypes from 'prop-types';import { Button, Card, CardDe
2021-10-01
我正在使用 react-navigator 4.x,并且只有一个页面需要导航,但是当我在照片页面中单击 <Button onPress={() => {props.navigation.navigate({ routeName: 'Login' })}} title="Go To" /> 时,出现此错误:import React, { useEffect, useRef } from 'react
2021-09-27
当我尝试使用 @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
2021-09-27
我有 2 个对象数组。我想用 collection2 的匹配对象更新/替换 collection1 的嵌套对象“comments”,其中 collection1.comments._id === collection2.cid 的顺序相同。collection1: [0: {"_id": "6104844e42c23e6d215651cd","comments": [{"_id": "6143e
2021-09-26
此错误:collection是保留的架构路径名,可能会破坏某些功能。您可以使用它,但使用风险自负。要禁用此警告,请将supressReservedKeysWarning作为架构选项传递。/Users/sama/Desktop/spbackend/node_modules/mongoose/lib/helpers/document/compile.js:174this.$set.call(this.
2021-09-25
我尝试比较、查找和推送数组内的数据。但出现以下错误Error => TypeError: undefined is not an object (evaluating 'data[index].push')我有以下 JSON/Array[{"category":"Super","id":"1","images":[],"status":"open","url":"some url here"},{
2021-09-24
我正在使用 Firestore 后端在 React Native 上构建聊天应用程序。我的结构如下:Channels-Channel{user1,user2,messages:[] (This is a subcollection not an array inside the document)}我想检查是否有包含所选用户的频道。检查器函数:const [chatRef, setChatRef]
2021-09-23
我想制作一个测验应用程序。用户按下“提交”按钮后,将检查问题。因此,问题最终将一次性全部检查。我需要保存每个问题的用户选择(答案),然后在提交时检查它们。我在考虑这个:let [currentQuestionIndex, setCurrentQuestionIndex] = useState(0);let [userAnswers, setUserAnswers] = useState([] as
2021-09-20
我正在尝试访问具有名为 allMemes 的属性的状态对象。获取 json 数据后,它将返回 100 个元素的数组。然后另一个属性是使用此数组从长度中获取一个随机数。到目前为止,我一直收到错误“TypeError:无法读取未定义的属性(读取'url')”。我想了解这个错误并对我的代码有一些反馈。谢谢!const Memes = () => {const INITIAL_STATE = {topTe
2021-09-19
当我在 React Native 应用程序(使用 expo)上导航到某些屏幕时,出现以下错误:TypeError: undefined is not an object (evaluating 'props.getItem')之前一直运行良好,经过研究发现似乎是我的 packages/babel 出了问题,但我尝试了几种解决方案,包括npm upgrade --latest并重置缓存,但到目前为止
2021-09-14
我使用了react-nimimage-picker;691914626当我添加IMG时,但是关闭窗口我有一个错误typeError:未定义不是对象(评估“响应” [0]')我的代码:2166642400https://i.sstatic.net/wtoxg.png我该怎么办?写什么样的支票?仅当您按下按钮添加照片库中的照片时,才会发生这种情况,但改变了我的主意并关闭了对话框窗口
2021-09-13