In dieser Aktion habe ich eine einfache GET-Antwort auf die URL „api/media/action“
export const listWorks = async (dispatch) => { try{ dispatch({type:WORK_LIST_REQUEST}) const { data } = await axios.get('api/media/works/') dispatch({type:WORK_LIST_SUCCESS, payload:data}) } catch(error) { dispatch({type:WORK_LIST_FAIL, payload: error.response && error.response.data.detail ? error.response.data.detail : error.message }) } }
In App.js sind Routen definiert als:
<Route path='/work/:name'component={WorkScreen}/>
Beim Starten der Aktion erhielt ich im Backend die folgende Fehlermeldung:
[26/Jul/2023 20:47:24] "GET /work/api/media/works/ HTTP/1.1" 404 2712
Ich verstehe nicht, warum „Arbeit“ in der GET-Anfrage hinzugefügt wird
URL `api/media/works/`是相对路径。它不以`http://`或`https://`开头,因此被视为相对于发起API调用的当前URL的路径。
尝试使用以`http://`或`https://`开头的绝对URL进行相同的请求。