export default class LaunchingScreen extends React.Component {constructor(props) {super(props);this.state = {isLoading: true,dataSource: null,refreshing: false};}//When screen is pulled down this call
2018-10-06
以下是导致错误的代码:import React, { Component } from 'react'import Header from './components/Header';import Todo from './components/Todo';class App extends Component {state: {list: [{title: "Take out trash",co
2019-08-12
我尝试动态添加一个视图组件,一旦按下按钮,我就尝试了一些文本,并且我得到了“ null不是对象”错误我尝试跟随其他一些帖子,但它们实际上没有奏效。我试图遵循此代码:编程中添加一个组件在React Antive中添加一个组件为了动态添加该视图组件,但它给了我标题中的错误。这是我的代码:382970933它应该输出一些随机数,如您在Lotonumber()函数中所见。我是反应的新手,所以如果我在代码中
2019-10-20
我对 Javascript 和 ReactJS 还很陌生,对错误TypeError: undefined is not an object (evaluating '_this.state = { destination: '' }')感到困惑。这是我的代码:import React, {Component} from 'react';import { StyleSheet, View, Text
2020-06-28
我正在学习 Wes Bos 的React for Beginners课程,在 State 视频中,他编写了以下代码:import React, { Component } from 'react';class AddFishForm extends Component {nameRef = React.createRef();priceRef = React.createRef();statusR
2020-08-01
我正在使用“react-native-paper”中的 List 来显示订单列表。当我点击订单时,“显示订单总额和产品。我添加了:left = {product.quantity}以便在产品左侧显示产品数量。但是,此行给我一个错误:TypeError: 1 is not a function (near '... left ...')我的数据数组如下所示:[ Object {"amount":
2021-01-29
我正在使用 React Native 0.62,其中我使用了 Drawer Navigator。当用户登录应用程序时,我将 auth api 响应存储到 redux 存储中。登录后,我想在仪表板标题中显示登录的用户名,但我无法在我的函数中使用 redux 存储。尝试使用钩子但没有成功。任何帮助或建议。提前谢谢您。这是我的代码:const GradientHeader = props => (<Vi
2020-07-30
我收到此错误:Cannot read property 'map' of undefined newindex.android.bundle?platform=android&dev=false&hot=false&minify=false:87221:34ReactCompositeComponentWrapper._constructComponentWithoutOwnerindex.and
2017-07-15
尝试理解 props,如果犯了一个愚蠢的错误,请原谅我。我尝试将所有数据传递到一个变量中,并将其传递到 props 中(使用 {item.text} 和 {item.key}),但是我的“.map”没有拾取任何内容,并且出现一堆错误,我的代码出了什么问题?问题具体出在这块代码中 createList(list) {return <li>{list.text}</li>}render()
2019-05-16
出现错误:TypeError:无法读取未定义的属性“map”。在重新加载页面之前,它工作正常。但是当我重新加载页面时出现错误。我想从数组中获取对象值。import {bindActionCreators} from 'redux';import {connect} from 'react-redux';import {fetchData} from '../../actions/fetchData
2019-12-01
这是我的代码:componentDidMount() {console.log(this.props.navigation.state.params.idFilm)getFilmDetailFromApi(this.props.navigation.state.params.idFilm).then(data => {this.setState({film: data,isLoading: fal
2020-04-29
感谢您的帮助,我更新了我的代码。当我使用 Expo 启动应用程序时,打开成功,但我丢失了扫描图标,它没有出现在我的屏幕上。这个图标以前出现过。这个想法是扫描一些条形码以显示来自产品的相关数据。这是我的新代码:import React, { useState, useEffect } from "react";import {StyleSheet,Text,View,FlatList,Button,
2020-06-05
我正在创建 select 的自定义组件,但遇到了一些问题。显示此错误无法读取未定义的属性“map”。我想映射 select 选项并在 props 页面中使用function CustomSelect(props) {const classes = useStyles();const options = ["Religion","Internal ","Not Profit",];const {ag
2020-07-17
当我点击 JSX 中的 Pressable 元素时,我收到错误:Undefined 不是函数(靠近“... wines.map ...”)。日志显示它来自 JSX 中的wines.map循环。我不确定我尝试更改toggle函数中的数据的方式或我设置默认useState数组对象的方式可能存在什么问题。代码应该为每个按钮独立切换两种不同类型的图像。/*** Sample React Native Ap
2021-01-09
我是 React 的新手。我通过 API 获取 pokemon。基本上,当我单击其中一个 pokemon 时,我想了解该 pokemon 的详细信息。但是,我在标题中收到此错误。我知道我的 PokemonDetail.js 文件中存在问题。但是我无法将信息从 app.js 传输到 pokemonDetail.js 文件。我该怎么做?感谢您的时间。另外,我英语不好,所以这是我的项目。https://
2021-10-13