我正在学习 JavaScript 中的对象和原型,但我遇到了困难。我的目标是创建一个对象,然后将其绘制到页面上。我创建了另一个原型构造函数,因此稍后可以在页面上移动这个特定创建的对象,但是它不起作用,我不知道如何进一步使用它这是我的 JS:var Bunny = function (x, y) {this.x = x;this.y = y;}Bunny.prototype.drawBunny =
2020-08-19
我正在开发一款类似 Tinder 的应用,尝试在单击“喜欢”或“不喜欢”按钮时从数组中删除当前卡片并转到下一张卡片。同时,我尝试将卡片添加到新数组(喜欢或不喜欢的列表)。将对象添加到新数组似乎可行(尽管存在延迟,并且需要单击按钮两次 - 这也需要排序),但只要我尝试将其从当前数组中删除,它就会崩溃。我尝试查看此解决方案:使用钩子(useState)从数组中删除对象,但无论我尝试什么,我都只会得到“
2020-08-17
收到此错误:TypeError: undefined is not an object (evaluating 'doc.data().books')来自此代码:const getData = () => {const snapshot = db.collection('users').doc(userEmail).onSnapshot((doc) => {setData(doc.data().b
2020-08-17
我在加载图表时收到此错误:TypeError:无法读取未定义的属性“forExport”a.Chart.destroy我正在通过解析 JSON 对象动态呈现数据。这是一个错误吗?我被卡住了。有人能帮我修复这个错误吗?
2020-08-16
我遗漏了什么?请帮忙解决 _/_我无法正确更新 redux 存储状态而不中断这是我在发布数据之前 redux 存储状态中的当前状态next state Object {"highlights": Object {"errMess": null,"highlights": Array [],"isLoading": true,},"posts": Object {"errMess": null,"i
2020-08-15
this is my codeusercontroller:-const {hashSync,genSaltSync}=require('bcrypt');const {create}=require('./user.service');module.exports={createUser:(req,res)=>{const body=req.body;const salt=genSaltSync
我最近开始了一个 React Native 项目,并且在映射 JSON 对象方面遇到了很多困难。我浏览了很多帖子,但每次都收到相同的错误。下面是我在映射 JSON 时使用的几个代码片段getUserNotifications = () => {var uname = this.state.userName;fetch('https://examp.le/endpoint?getNotificati
2020-08-12
export default function App ({navigation})有一个函数以 <Stack.Navigator> 开头并包含它。但是当我想使用导航功能并在 onPress 中使用“navigation.navigate ('Lead')”时TypeError: undefined is not an object evaluating react navigation我收到错误
2020-08-12
在我的UserProductsScreen.js文件中,我传递了一个参数 id,以便可以在导航中选择它:const UserProductsScreen = props => {const userProducts = useSelector(state => state.products.userProducts);// Navigate to EditProductconst editProd
2020-08-12
我要向数组中添加一个对象,第二次我想添加另一个对象时,整个数组变成了第一,最终出现错误,我的目标是使用 Redux 为 Todo 程序添加一个任务。我也收到此错误:TypeError: Cannot read property 'length' of undefinedTypeError: undefined is not iterable (cannot read property Symbol
2020-08-11
我试图在 React-Native 中将一些数据作为字典 /JSON 存储在 JS 中。我已经定义了这样的字典:const [item, setItem] = useState({});function onUpdate(id, quantity) {console.debug('tab index : ' + tabIndex);console.debug('id : ' + id);conso
2020-08-11
我在使用 useState 钩子更新状态时遇到问题。因此,在我的“App”组件中,我声明了对象数组状态:const [panelSettings, setPanelSettings] = useState([{title: 'Background',active: true,options: [],updateDaily: true},{title: 'Time and Date',active:
2020-08-10
我正在尝试弄清楚如何按照此处中 Formik、Material UI、React 工具的 Autocomplete 字段文档中的说明进行操作。文档中给出的示例是:import { Autocomplete } from 'formik-material-ui-lab';const options = [{ title: 'The Shawshank Redemption', year: 1994
2020-08-08
我的数据:data() {return {currentStore: this.store,brands: [],}},我的 v-select<v-selectv-model="currentStore.brands.data":options="allBrands":taggable="true":multiple="true"/>我有一个对象上的观察者,它看起来像这样 (this.newVal
2020-08-07
我有一个通过 onclick 函数打开的容器。然后我在容器内有一个十字,它应该关闭父元素,但是我收到了TypeError: undefined is not an object (evaluating 'parent.id')代码在这里<div class="post" onclick="postClick(el)">......</div>JavaScriptfunction postClick
2020-08-04