我是 React Native 和 React Navigation 的新手,我收到此错误。Uncaught TypeError: Cannot read properties of undefined (reading 'navigate')我不明白,因为我只是使用已经有效的相同代码,但现在它不起作用了。我正在尝试制作一个后退箭头,将您送回 MachineList 屏幕。//doesn't wo
我尝试从主页打开一个新页面,单击列表中的项目时会传递数据。我相信我拥有的代码适用于旧版本的 react-router-dom。有人能告诉我如何在新版本的 React 中做同样的事情吗?我需要在新页面中显示 ID 和标题。我尝试按照此处的示例https://codesandbox.io/s/focused-wright-w8il9?file=/src/ViewUserDetails.js:354-3
2022-01-25
升级 vue 到 3.x 后,控制台报错:Uncaught TypeError: Cannot read properties of undefined (reading 'deep')at withDirectives (commons1.js:10679:17)at Proxy.render (eval at compileToFunction (commons1.js:40198:21),
2022-01-23
今天我将我的 google chrome 扩展程序 vue 版本升级到 3.x,运行应用程序时,google chrome 扩展程序弹出控制台显示如下错误:commons1.js:13392 Uncaught TypeError: Cannot read properties of undefined (reading 'extend')at Object../src/public/widget/
2022-01-22
我试图在我的应用程序上使用 lightpick datepicker。不幸的是,当我不遵循标准时,它可以工作,而当我遵循标准时,它就不起作用了。Blade :@section('page_script')<script src="{{ url('js/themeFiles/moment/moment.min.js') }}"></script><script src="{{ url('js/the
2022-01-21
我必须从数组中写入所有参与者,每个参与者都应该在新行上。到目前为止,我有这个代码。class Movie {constructor(movieName, releaseDate, actors) {this.movieName = movieName;this.releaseDate = releaseDate;this.actors = actors;}printDetail() {consol
2022-01-20
该应用程序在本地运行良好。使用 Firebase 托管部署后出现错误。以下代码是我从 api 资源获取数据的组件import React, { useEffect, useState } from 'react'import{ useSelector, useDispatch} from "react-redux"import { setProducts } from "../containers
2022-01-16
APP.JS导入'./App.css';从“react-router-dom”导入{BrowserRouter as Router,Routes,Route,Navigate};从“./pages/Home”导入Home;从“./pages/Login”导入Login;从“./pages/Register”导入Register;从“./pages/BookingCar”导入BookingCar;导
2022-01-14
我尝试了有关此主题的所有堆栈溢出可能性,但对我不起作用,我认为它已经过时了。我在使用 Discord.JS V13.6因此,目前,我有这个:const channel = client.channels.cache.get('my_id-channel');channel.send('content');我右键单击频道 → 复制 id 获取 my_id-channel我的错误:未捕获的 TypeE
2022-01-14
我是 React 新手,正在尝试制作一个无头的 worpdpress 应用程序。当我获取帖子时,我只得到第一个值。我获取帖子并将其保存在状态中componentDidMount() {this.setState({ loading: true }, () => {axios.get('http://localhost/wpprojekte/ebike/wp-json/wp/v2/posts/426
2022-01-12
本质上,我希望用户能够单击并按住鼠标并滚动表格中的任意数量的单元格,只要他们滚动到单元格上,它就会改变颜色。问题是,当用户定期单击单元格时,我希望单元格改变颜色,我有一个单独的事件侦听器可以执行此操作。这是我的 html 表格<table class="c-table" onmousedown="hoverColorFill()">这是我为尝试处理鼠标悬停情况而编写的 js 函数,我对此进行了描述
2022-01-09
const input = {a: [1, 2, 3],b: {c: {d: {e: 4,},},},f: 5,g: {h: [6, 7],},};const outPut = {a: 123,bcde: 4,f: 5,gh: 67,};const getAllKeysOfObject = (obj, key) => {let tempKey = key;let nextKey = ''if (o
2022-01-07
我无法将用户输入推送到本地存储。当我的 quizData 变量为空数组时,它可以正常工作,let quizData = JSON.parse(localStorage.getItem('MyQuiz'));将其改回此值也可以正常工作,因为(我假设)LS 中已经有信息,let quizData = JSON.parse(localStorage.getItem('MyQuiz'));但清除 LS 会
2021-12-26
我收到此错误Mainsection.js:27 Uncaught TypeError: Cannot read properties of undefined (reading 'map')这是我的 mainsection.js 文件,我正在使用 API 密钥迭代数据,但仍然没有找到错误的原因。首先,我创建了一个名为 info 的数组,并将所有数据存储在其中,然后迭代它,现在使用 fetchapi
2021-12-26
我在控制台上收到此错误:未捕获(在承诺中)TypeError:无法在 eval 中读取未定义的属性(读取“消息”)。这是我在 axios.js 中的代码:axiosIns.interceptors.response.use(response => {if (response.message === 'Unauthenticated') {window.location = '/login'}ret
2021-12-25