react-router-dom v6
当我使用get方法提交操作时
useEffect(() => {
if (!standardSelected) return;
clearTimeout(sectionListTimeOutId);
const clearTimeoutId = setTimeout(() => {
console.log('>>> use submit called');
submit({ standard_id: standardSelected }, { method: 'get' });
}, 1000);
setSectionListTimeOutId(clearTimeoutId);
}, [standardSelected]);
我的action函数没有被触发,因为action只会在除了"GET"方法之外的方法触发。
我如何强制使用useSubmit来触发action而不检查任何内容。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
如果你想强制触发一个动作,你可以使用
"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]);