我对 html 还很陌生,所以我真的不知道该怎么做。我想创建一个图片幻灯片,但在浏览器控制台中出现此错误:Uncaught TypeError: Cannot read properties of undefined (reading 'style')我没有尝试任何东西,因为我不知道我可以尝试什么。const slideshowImages = document.querySelectorAll(
2022-12-29
我在我的 React-JS 项目中使用 Service Worker。我们的项目在两种浏览器和操作系统的组合下运行。Chromium-102.0.5005.63 和 Windows 7Chromium-49.0.2623.75 和 Windows XPService Worker 在 Chromium-102.0.5005.63 和 Windows 7 下运行良好,但在 Chromium-49.0
我试图从 Firestore 获取一条记录以显示在 Vue.js 中。我正在使用 VueFire 和此处的指南。<script setup>import { initializeApp } from 'firebase/app'import { getFirestore , doc } from "firebase/firestore";import { useDocument } from 'v
2022-12-25
尝试使用 javascript 显示 bootstrap 5 模式时出错。const handleClick = (e) => {e.preventDefault();const modalElement = document.getElementById('editUserModal');const modal = Modal.getOrCreateInstance(modalElement);
2022-12-24
我尝试在将鼠标悬停在 font-awesome 图标旁边的超链接上时为其添加抖动效果。HTML 如下所示:<div class="icon-hyperlink"><span><i class="fas fa-phone p-2"></i></span><span><a href="tel:XXXX XX XX XX">John: XXXX XX XX XX</a></span></div>我尝试将
2022-12-22
我对 redux 还很陌生。我似乎无法弄清楚为什么我的 redux 选择器export const quizzesSelector = (state) => state.quizzes.quizzes;在第 31 行会产生“Uncaught TypeError: Cannot read properties of undefined (reading 'quizzes')”错误。我哪里做错了?为什
我对 Phaser 还很陌生。我有一个播放音乐的主平台游戏场景。一切都很顺利,直到我尝试向游戏添加开始菜单。这是菜单的相关代码:public create(): void {super.create();this.newGameText = this.add.text(+this.game.config.width / 2, +this.game.config.height / 2 - 72, "
2022-12-21
我不明白为什么它不起作用。 addEventListener 未激活一切正常,但当我单击按钮时,网站会发送给我(在启动之前)代码不是我写的,但我的朋友 3 天前离开了我,我必须在 2 天内提供一个 webapp :)。欢迎任何帮助。script.js:112 Uncaught TypeError: Cannot read properties of undefined (reading 'addE
2022-12-21
在我的 vue3 应用程序中使用 VueQuill,尝试显示 html 字符串时收到以下控制台错误 -我的代码 -<template><div class=""><QuillEditor v-model:content="data" contentType="html" /></div></template><script>import { QuillEditor } from '@vueup/v
2022-12-20
我尝试将 fiBounds 与 WebMercatorViewport 对象一起使用,但收到有关 padding 属性的错误。我的代码:const initialViewState: IViewport | WebMercatorViewport = useMemo(() => {if (locationsFitBounds) {const minLat: number = Math.min(..
2022-12-19
我有一个对象,它的 props 中有一个数组。我试图更改此数组内(对象内部)项目的值。此对象来自 Redux。const [product, setProduct] = useState(useSelector(selectProducts).find((item) => item.id === id))console.log(product)// { name: "",// imageU
2022-12-16
我以前从未遇到过这种情况。我正在使用 Meteor.js步骤 1. Meteor npm install cloudinary步骤 2. 在客户端文件中,我导入包 import { Cloudinary } from "cloudinary";当我在本地运行 Meteor 时,出现以下错误:Uncaught TypeError: Cannot read properties of undefine
2022-12-14
我在 vue 中创建了一个变量,其值为data() {return {plans: [],}稍后会向 Plans 提供推送的对象。当我在 js 中打印该对象时,它会给出{id: 'filler', name: 'Premium', priceId: 'filler', price: '10000'>。我还可以使用console.log(this.plans[1]['name'])专门获取名称,
2022-12-14
useEffect(() => {if(currentUser){currentUser?.friends.map(friends => {if(friends._id===currentProfile._id){return setFriend(true)}})}else{return setFriend(false)}},[currentUser,currentProfile])//curre
我有如下代码let ctrlClassificationLevel = $('#ctrlClassificationLevel').kendoDropDownList();ctrlClassificationLevel.kendoDropDownList({dataTextField: "Name",dataValueField: "Id",dataSource: data,//data comi
2022-12-11