admin管理员组文章数量:1345573
I had made the axios setup with saga.js, when the user clicks the Register button have to dispatch an action and it will hit the request, everything is working fine, except appending the baseURL in the url, the url http://users/register
,
My axios setup,
import axios from 'axios';
const axiosClient = axios.create({
baseURL : `/`
});
export function postRequest(URL, payload) {
return axiosClient.post(`/${URL}`, payload).then(response => response);
}
saga.js
import { put, takeEvery, all, call } from 'redux-saga/effects';
import {register} from "./serviceWorker";
import { postRequest } from './helpers/axiosClient';
import actions from "./redux/actions";
function* registerUser(params) {
try {
const response = yield call(() => postRequest('/users/register', params.payload));
console.log('response', response.data);
yield put({
type: actions.ON_REGISTER_SUCCESS,
payload: response.data,
});
} catch (error) {}
}
function* watchIncrementAsync() {
yield takeEvery('ON_REGISTER', registerUser)
}
export default function* rootSaga() {
yield all([
watchIncrementAsync()
])
}
I had made the axios setup with saga.js, when the user clicks the Register button have to dispatch an action and it will hit the request, everything is working fine, except appending the baseURL in the url, the url http://users/register
,
My axios setup,
import axios from 'axios';
const axiosClient = axios.create({
baseURL : `https://test-url./`
});
export function postRequest(URL, payload) {
return axiosClient.post(`/${URL}`, payload).then(response => response);
}
saga.js
import { put, takeEvery, all, call } from 'redux-saga/effects';
import {register} from "./serviceWorker";
import { postRequest } from './helpers/axiosClient';
import actions from "./redux/actions";
function* registerUser(params) {
try {
const response = yield call(() => postRequest('/users/register', params.payload));
console.log('response', response.data);
yield put({
type: actions.ON_REGISTER_SUCCESS,
payload: response.data,
});
} catch (error) {}
}
function* watchIncrementAsync() {
yield takeEvery('ON_REGISTER', registerUser)
}
export default function* rootSaga() {
yield all([
watchIncrementAsync()
])
}
Share
Improve this question
asked Feb 4, 2021 at 2:33
Hema RamasamyHema Ramasamy
7262 gold badges8 silver badges19 bronze badges
2
-
2
I had the problem when an instance method's relative path doesn't append to the base URL. The reason is that I used an incorrect config property name:
baseUrl
instead ofbaseURL
. – MegaCasper Commented Dec 30, 2022 at 19:23 - Thank you soo much! I literally spent 1 hour thinking what's wrong in my code @MegaCasper – Labani Das Commented Mar 14, 2023 at 8:01
1 Answer
Reset to default 9If you remove the leading slash added to URL
in postRequest
, axios will use the base URL to build the full path.
return axiosClient.post(URL, payload).then(response => response);
If you would like to understand what's happening, this is where axios builds the full path. It thinks you're passing an absolute URL (since the path '//users/register'
starts with a double slash) and doesn't use the base URL.
本文标签: javascriptAxios baseURL is not appending with the URL in reactjsStack Overflow
版权声明:本文标题:javascript - Axios baseURL is not appending with the URL in react.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758499a2533941.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论