开发者问题收集
在我的UserProductsScreen.js文件中,我传递了一个参数 id,以便可以在导航中选择它:const UserProductsScreen = props => {const userProducts = useSelector(state => state.products.userProducts);// Navigate to EditProductconst editProd
我要向数组中添加一个对象,第二次我想添加另一个对象时,整个数组变成了第一,最终出现错误,我的目标是使用 Redux 为 Todo 程序添加一个任务。我也收到此错误:TypeError: Cannot read property 'length' of undefinedTypeError: undefined is not iterable (cannot read property Symbol
我试图在 React-Native 中将一些数据作为字典 /JSON 存储在 JS 中。我已经定义了这样的字典:const [item, setItem] = useState({});function onUpdate(id, quantity) {console.debug('tab index : ' + tabIndex);console.debug('id : ' + id);conso
我在使用 useState 钩子更新状态时遇到问题。因此,在我的“App”组件中,我声明了对象数组状态:const [panelSettings, setPanelSettings] = useState([{title: 'Background',active: true,options: [],updateDaily: true},{title: 'Time and Date',active:
我正在尝试弄清楚如何按照此处中 Formik、Material UI、React 工具的 Autocomplete 字段文档中的说明进行操作。文档中给出的示例是:import { Autocomplete } from 'formik-material-ui-lab';const options = [{ title: 'The Shawshank Redemption', year: 1994
我的数据:data() {return {currentStore: this.store,brands: [],}},我的 v-select<v-selectv-model="currentStore.brands.data":options="allBrands":taggable="true":multiple="true"/>我有一个对象上的观察者,它看起来像这样 (this.newVal
我有一个通过 onclick 函数打开的容器。然后我在容器内有一个十字,它应该关闭父元素,但是我收到了TypeError: undefined is not an object (evaluating 'parent.id')代码在这里<div class="post" onclick="postClick(el)">......</div>JavaScriptfunction postClick
我有以下 JavaScript:for (var i = 0; i < e.blog.length; i++) {var id = e.blog[i].id;var date = e.blog[i].date;var title = e.blog[i].title;var image = e.blog[i].image;var excerpt = e.blog[i].excerpt;var tag
我试图弄清楚当我发送一个对象中没有的数字时,如何让我的函数返回 false。const getUnitColor = (unitNumber: any): any => {const color = getColor.unit.find((unit: any) => {return unit.number === parseInt(unitNumber);}).unitColor[0].color
我是 Stack 的新手,不太清楚如何使用它。但我还是来了。我正在做一个生态系统项目,我有一个动物类,它有两种不同的性别(0 代表雌性,1 代表雄性)。当两种不同的性别相互交叉时,我想移除这两个对象,并在该位置添加一对(不同的对象,静态)对象。我有点做到了,但它只起作用了几秒钟。然后代码就中断了。控制台显示,“未捕获的 TypeError:无法读取未定义的属性‘intersects’”以下是处理论
我的输入框 ID 带有前缀“add-product-”,我想用空字符替换“add-product-”。因此,我尝试使用data[field.id].replace("add-product-", "");,但它给出了错误:[Error] TypeError: undefined is not an object (evaluating 'data[field.id].replace')这是我的代码
我正在使用 React Native 和 React Navigation。我试图只将其中一个屏幕设为mode="Modal,但导航时传递的路由参数显示“未定义”,错误为TypeError: undefined is not an object (evaluating 'route.params.title')。这是为什么?我该如何修复?我的尝试const ModalScreen = () =>
我正在运行此代码:const mongoose = require('mongoose');const DB_NAME = 'eventdb';const HOST = '127.0.0.1:27017';mongoose.createConnection(`mongodb://${HOST}/${DB_NAME}`,{useNewUrlParser:true});const db = mongo
[未处理的承诺拒绝:TypeError:未定义不是对象(评估“this.state.result.map”)]。每当我尝试从 api 获取数据时,我都会收到此错误。此外,在下面的代码中,我使用了 val.Global,其中 Global 是包含所有数据的标题。有人能告诉我我的代码中有什么问题吗?import React from 'react';import {View, Text, Activi
我有一个来自类似这样的 API 的 json"data": {"total_question": 2,"correct_answer": "1/2","correct_percentage": 50,"details": [{"question_id": 1,"question": "test questioner 1","choice": "choice 1.1","result": "corr