Heim > Fragen und Antworten > Hauptteil
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]);