チェックを行わずに useSubmit を使用してアクションを強制的にトリガーする方法は何ですか?
P粉301523298
2023-08-14 13:21:36
<p><strong>react-router-dom v6</strong></p><p>get メソッドを使用してオペレーションを送信すると</p>
<pre class="brush:php;toolbar:false;">useEffect(() => {
if (!standardSelected) が戻る;
clearTimeout(sectionListTimeOutId);
const clearTimeoutId = setTimeout(() => {
console.log('>>> 呼び出した送信を使用');
submit({standard_id:standardSelected},{method:'get'});
}, 1000);
setSectionListTimeOutId(clearTimeoutId);
}, [standardSelected]);
<p>アクションは「GET」メソッド以外のメソッドによってのみトリガーされるため、アクション関数はトリガーされません。 </p><p><strong>何もチェックせずに useSubmit で強制的にアクションをトリガーするにはどうすればよいですか。 </strong></p>
アクションを強制的にトリガーしたい場合は、
メソッドを使用できます。 リーリー"get"
の代わりに
"post"