我正在开发一个必须从 Firestore 数据库获取新订单的应用程序,我使用componentDidMount每 10 秒刷新一次屏幕并启动fetchNewOrders函数,如果有新订单,该函数应将该对象推送到状态数组newOrder,并在下面的 FlatList 中显示订单。当我启动代码时,它返回错误TypeError: undefined 不是对象(评估'item.id'),我还编写了一个从数
2022-02-28
我必须从类似于以下内容的 API 访问数据:{"speakers": [{"name": "speakerName","profile_picture": "profilePic"}]},{"speakers": []}我将 Speakers 保存为数组,但我不知道如何访问内部数组内的对象。 Speakers 参数提供整个数组(名称和个人资料图片)。const PublicEventsInfo =
我想在前端显示帖子详情。我的 api 显示的帖子详情如下,在 postman 中捕获:"message": "Posts fetched successfully!","posts": {"_id": "61f05f676793d49f466e7aaa","title": "Liberal Arts Student Sample","content": "The three-page.","cre
2022-02-06
最近将我的本地 J-Query 库从 1.9.1 更新到 3.6.0 后,我注意到了一些奇怪的问题。我在网上没有看到任何关于此问题的内容,而且我相信这些函数中的大多数都是标准 JavaScript 函数,而不是 J-Query。我发现 Date() 对象未定义。此外,还发生了以下与 Date 和 Array 对象相关的错误。如果我将代码恢复到 1.9.1,则不会出现任何问题。*此外,这是一个 No
2021-12-22
我有 2 个对象数组。我想用 collection2 的匹配对象更新/替换 collection1 的嵌套对象“comments”,其中 collection1.comments._id === collection2.cid 的顺序相同。collection1: [0: {"_id": "6104844e42c23e6d215651cd","comments": [{"_id": "6143e
2021-09-26
我尝试使用 Google Apps Script 中的 javascript 访问对象数组内的对象,但出现错误 - TypeError:无法读取未定义的属性“0”JSON(从 API 结果接收)如下,存储在“data”变量中:[{"values": {"article_number": [{"locale": null,"scope": null,"data": "0000000000101372
2021-07-30
我想使用异步存储实现兑现,但我遇到了该错误TypeError:未定义不是对象(评估'item.id.toString')这是我的代码import React, {useState} from 'react';import {View, Button, FlatList, Text} from 'react-native';import AsyncStorage from '@react-nativ
2021-06-15
我有一个关于从 React.js 使用 react-table 的相当简单的问题。我找不到任何关于 useMemo 用于本地 json 的示例或文档,几乎所有的教程都是基于 asyn api。目标是创建一个这样的表:https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/pagination?fi
2021-05-19
我从 API 中收到一个对象,其中包含一些简单属性和一个字符串数组。我尝试使用 map 函数显示此数组,但当我尝试使用 map 函数时,我的应用程序会中断并抛出“TypeError:tags 未定义”。代码:import React, { Component } from 'react';import {useParams} from "react-router-dom";import Video
2021-05-02
我有以下任务Given an array of strings, write a function that returns an object that groups each of the input array's elements by the first character.我的代码如下。我收到一个错误((用注释突出显示)说TypeError: Cannot read property
2021-04-27
我是 React Native 的新手。我想显示数组中的图像和文本。当我尝试从我的应用中提取图像时,它不起作用,图像未显示。const DATA = [{title: "Animaux",data: ["Poissons","Crevettes","Escargots"],image: [require('../assets/icon_aquarium_style.png'),require('.
2021-04-07
我试图将一个变量推送到嵌套对象的属性中,但 Javascript 一直给出此错误:TypeError:无法读取未定义的属性“push”但是,如果我声明一个嵌套变量并使用它来推送,它就可以正常工作。为什么 Javascript 会出现这种行为?有没有办法在不声明嵌套变量和不声明空数组的情况下做到这一点?var collection = {5439: {albumTitle: 'ABBA Gold'}
2020-12-23
我想转换一个数组,重新分组同一国家的所有城市。我有一个 Object 数组locations = [{cities: ["Paris"]country: "France"},{cities: ["Marseille"]country: "France"},{cities: ["Kiev"]country: "Ukraine"},{cities: ["Odessa"]country: "Ukrain
2020-12-19
我有一个对象数组const contentTypes = [{"contentType": {"content_type_id": 2,"content_type": "image",},},{"contentType": {"content_type_id": 3,"content_type": "video",},},{"contentType": {"content_type_id": 1,
2020-12-14
我尝试在使用 ReactJS 时从 RIDB API 获取数据。我获取了返回的数据function TryFetch() {const [camps, setCamps] = useState([]);useEffect(() => {axios.get(api).then( res => {console.log(res)setCamps(res.data)}).catch(err => {co
2020-10-20