在这个动作中,我在URL“api/media/action”上有一个基本的GET响应
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 }) } }
在App.js中,路由被定义为:
<Route path='/work/:name'component={WorkScreen}/>
通过启动该动作,我在后端收到了以下错误:
[26/Jul/2023 20:47:24] "GET /work/api/media/works/ HTTP/1.1" 404 2712
我不明白为什么在GET请求中添加了“work”
URL `api/media/works/`是相对路径。它不以`http://`或`https://`开头,因此被视为相对于发起API调用的当前URL的路径。
尝试使用以`http://`或`https://`开头的绝对URL进行相同的请求。