我试图使用反应钩子来解决一个简单的问题

const [personState,setPersonState] = useState({ DefinedObject });

具有以下依赖关系。

"dependencies": {
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "react-scripts": "3.0.0"
}

但我仍然得到以下错误:

/ src / App.js 第7行: React钩子useState在函数中被调用 “app”既不是React函数组件,也不是自定义React 钩子函数react-hooks/rules-of-hooks 39行: 'state'没有定义 no-undef 搜索关键字以了解关于每个错误的更多信息。

组件代码如下:

import React, {useState} from 'react'; 
import './App.css'; 
import Person from './Person/Person'; 

const app = props => { 
    const [personState, setPersonSate] = useState({ person:[ {name:'bishnu',age:'32'}, {name:'rasmi',age:'27'}, {name:'fretbox',age:'4'} ], }); 
    return (
        <div className="App"> 
            <h2>This is react</h2> 
            <Person name={personState.person[1].name} age="27"></Person>
            <Person name={personState.person[2].name} age="4"></Person> 
        </div> ); 
    };
    export default app;

人组件

import React from 'react'; 

const person = props => { 
    return( 
        <div>
            <h3>i am {props.name}</h3>
            <p>i am {props.age} years old</p>
            <p>{props.children}</p>
        </div> 
    )
};

export default person; 

当前回答

可能是在没有条件的useEffect之前添加了依赖于条件的useEffect

EX:

useEffect(() => {
  _anyFunction();
}, []);
    
useEffect(()=> {
  anyCode....
}, [response]);

其他回答

替换这个

export default app;

用这个

export default App;

我想你们学的课程和我学的是一样的因为你们在这里使用了完全相同的变量名,实际上你们遗漏了一点就是你把应用的名字改成了小写

export default app

有一个小错误,就是在index.js中更改名称,你在App.js中更改了名称,但在index.js中忘记更改名称,你仍然像这样导入它

import App from './App.js'

所以这里的名字也要改

我有同样的问题,但不是与应用程序。我有一个自定义类,但使用小写字母开始函数名,也收到了错误。

将函数名的第一个字母和导出行更改为CamelCase,错误消失。

在我的案例中,最终结果是这样的:

function Document() {
....
}
export default Document;

这解决了我的问题。

        import React, { useState } from "react"

    const inputTextValue = ({ initialValue }) => {
        const [value, setValue] = useState(initialValue);
        return {
            value,
            onChange: (e) => { setValue(e.target.value) }
        };
    };

    export default () => {
        const textValue = inputTextValue("");
        return (<>
            <input {...textValue} />
        </>
        );
    }

/*"Solution I Tired Changed Name of Funtion in Captial "*/

    import React, { useState } from "react"

const InputTextValue = ({ initialValue }) => {
    const [value, setValue] = useState(initialValue);
    return {
        value,
        onChange: (e) => { setValue(e.target.value) }
    };
};

export default () => {
    const textValue = InputTextValue("");
    return (<>
        <input {...textValue} />
    </>
    );
}

在应用程序函数中,你错误地拼写了单词setpersonState,漏掉了字母t,因此它应该是setpersonState。

错误:

const app = props => { 
    const [personState, setPersonSate] = useState({....

解决方案:

const app = props => { 
        const [personState, setPersonState] = useState({....