强制使用 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) return;
clearTimeout(sectionListTimeOutId);
const clearTimeoutId = setTimeout(() => {
console.log('>>> use submit called');
submit({ standard_id: standardSelected }, { method: 'get' });
}, 1000);
setSectionListTimeOutId(clearTimeoutId);
}, [standardSelected]);</pre>
<p>我的action函数没有被触发,因为action只会在除了"GET"方法之外的方法触发。</p><p><strong>我如何强制使用useSubmit来触发action而不检查任何内容。</strong></p>
如果你想强制触发一个动作,你可以使用
"post"
方法,而不是"get"