如何解决加载响应数据失败:未找到具有给定标识符的资源的数据

问题描述 投票:0回答:1

发布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); }); };

帮我获取响应数据

javascript reactjs axios response fetch-api
1个回答
0
投票

就我而言,问题出在后端服务器配置上。将环境变量设置为“开发”解决了问题。

© www.soinside.com 2019 - 2024. All rights reserved.