发布API
export const resendInvitation = async (userName) => { await API.post( 'delta-api',
用户管理/用户/${userName}/resendInvitation, {} ); };
const handleResendInvitation = async () => { await resendInvitation(userName) .then((response) => { setOpen(false); }) .catch((e) => { setOpenNotification(true); setNotificationMessage(e.response.data.message); }); };
帮我获取响应数据
就我而言,问题出在后端服务器配置上。将环境变量设置为“开发”解决了问题。