Lösen Sie das Problem, dass die React-Routing-Attribute undefiniert werden
P粉696891871
P粉696891871 2023-08-14 14:56:23
0
2
561
<p>Ich möchte einige Eigenschaften (<code>loading</code> und <code>getContacts</code>) an eine Komponente in ReactJS senden. Ich verwende Routing, um jeden Pfad abzurufen, aber das Ergebnis ist in der Zielkomponente undefiniert. Wie läuft das? </p> <pre class="brush:php;toolbar:false;">const App = () => const [getContacts, setContacts] = useState([]); const [loading, setLoading] = useState(false); zurückkehren( <div className='App'> <Navbar/> <Routen> <Route path='/' element = {<Navigieren zu ="/contacts"/>}/> <Route path='/contacts' Laden= {Laden} Kontakte= {getContacts} Element= {<Kontakte/>} /> <Route path="/contacts/add" element = {<AddContact/>}/> <Route path = "/contacts/:contactId" element = {<ViewContact/>}/> <Route path = "/contacts/edit/:contactId" element = {<EditContact/>}/> <Route path="*" element={ <div className='text-light py-5'> Nicht gefunden! </div>} /> </Routen> </div> ); Standard-App exportieren;</pre> <p>In Contact.jsx habe ich: </p> <pre class="brush:php;toolbar:false;">const Contacts = ({ Kontakte, Laden }) => zurückkehren ( <> <div>{Kontakte}</div> <div>{loading}</div> </> ); }; Standardkontakte exportieren;</pre> <p>Aber sie sind alle undefiniert. </p>
P粉696891871
P粉696891871

Antworte allen(2)
P粉806834059

你正在将props传递给你的<Route/>组件。

<Route
  path="/contacts"
  loading={loading}
  contacts={getContacts}
  element={<Contacts />}
/>

但是你应该将它们传递给你的实际<Contacts/>组件

<Route
  path="/contacts"
  element={<Contacts loading={loading} contacts={getContacts} />}
/>
P粉852578075

尝试将状态变量直接放入子元素中:

<Route path='/contacts' element={<Contacts loading={loading} contacts={getContacts}/>} />
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage