在 React Native 中尝试setState时出错。代码import React from "react";import { TextInput, Text, View, Button, Alert } from "react-native";const UselessTextInput = () => {state = { currentDate: "" };const setCuren
2021-01-23
我有一个如下所示的类组件:interface MyState {x_array: number[]y_array: number[]order_graph_1: number}class ItemsContainerOld extends React.Component<MyProps, MyState> {constructor(props: MyProps) {super(props)this
2021-05-15
我正尝试将 setState 函数用于我的 App 类中的方法。当前代码示例:addRandomContact() {this.setState({actors: contacts.slice(0, 6)})>我希望我的联系人数组的长度从 5 更改为 6。我收到的错误如下:TypeError:无法读取未定义的 addRandomContact 属性“setState”
我尝试使用如下嵌套属性来组织我的状态:this.state = {someProperty: {flag:true}}但是像这样更新状态this.setState({ someProperty.flag: false });不起作用。如何正确完成此操作?
2017-03-27
我对 React 还很陌生,并收到以下错误:react-dom.development.js:14906 Uncaught Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following
2021-04-29
我从 Firebase 实时数据库获取了一些数据,现在我正尝试将其添加到变量中。我确信查询有效,因为如果我 console.log(dataSnapshot),它会记录正确的数据(即 001)。但是,当我尝试使用该数字创建变量时,我收到以下错误:无法读取未定义的属性“setState”,并且它不会向控制台返回任何内容。这是我的代码:class Table extends Component {co
2020-08-18
我使用 fetch 将数据发布到我的本地 api,但在尝试获取它们时,出现了这样的错误。在 fetch 中,我完全可以得到结果,但之后尝试将其传递到下面的状态:this.setState({items: result.items })butitemsreturnsundefinedand don't know why ?我的代码:class App extends Component {const
2019-01-08
我尝试使用从 axios get 返回的数据来设置状态。但是我一直收到此错误 TypeError:无法读取未定义的属性“setState”。class Page extends React.Component {constructor(props) {super(props);this.authenticated = props.authenticated;//this.handleClick =
这是我第一次使用 React Native,我正在使用 MangoDB,我将记录存储在数据库中并获取记录,现在我想在 Flatlist 中显示,需要 setState() 但是它抛出了未定义的错误db.find({}, function (err, docs) {this.setState({ dataSource: docs });});docs 是用户数组,我能够在控制台中打印数据,它可以工作
2018-12-20