ฉันกำลังพยายามใช้ react hooks สำหรับปัญหาง่ายๆ
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 Hook "useState" ถูกเรียกในฟังก์ชัน "app" ซึ่งไม่ใช่ทั้งส่วนประกอบของฟังก์ชัน React หรือฟังก์ชัน React Hook ที่กำหนดเอง 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;