Heim  >  Fragen und Antworten  >  Hauptteil

Wie kann man useSubmit zwingen, ohne Prüfung eine Aktion auszulösen?

<p><strong>react-router-dom v6</strong></p><p>Wenn ich den Vorgang mit der get-Methode übermittle</p> <pre class="brush:php;toolbar:false;">useEffect(() => { if (!standardSelected) return; clearTimeout(sectionListTimeOutId); const clearTimeoutId = setTimeout(() => { console.log('>>> use subscribe aufgerufen'); send({ standard_id: standardSelected }, { method: 'get' }); }, 1000); setSectionListTimeOutId(clearTimeoutId); }, [standardSelected]);</pre> <p>Meine Aktionsfunktion wird nicht ausgelöst, da die Aktion nur durch andere Methoden als die „GET“-Methode ausgelöst wird. </p><p><strong>Wie kann ich useSubmit zwingen, eine Aktion auszulösen, ohne etwas zu überprüfen? </strong></p>
P粉301523298P粉301523298455 Tage vor506

Antworte allen(1)Ich werde antworten

  • P粉852114752

    P粉8521147522023-08-15 09:42:15

    如果你想强制触发一个动作,你可以使用"post"方法,而不是"get"

    useEffect(() => {
        if (!standardSelected) return;
        clearTimeout(sectionListTimeOutId);
        const clearTimeoutId = setTimeout(() => {
          console.log('>>> use submit called');
          submit({ standard_id: standardSelected }, { method: 'post' });
        }, 1000);
        setSectionListTimeOutId(clearTimeoutId);
      }, [standardSelected]);
    

    Antwort
    0
  • StornierenAntwort