热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

为什么我无法从axios中的json获取数据

请告诉我为什么我无法从axios中的json获取本地数据。db.json位于项目的根目录,但在getEv

请告诉我为什么我无法从axios中的json获取本地数据。
db.json位于项目的根目录,但在getEvents函数中会引发错误404。

请帮助我

operation.js


import FetchClient from 'app/utils/FetchClient';
import IdsAndByIds from 'app/utils/IdsAndByIds';
import { eventsFetch,setEvents } from './actions';
export const getEvents = () => async (dispatch) => {
try {
const { data } = await FetchClient.get('./db.json');
dispatch(setEvents(IdsAndByIds(data)));
dispatch(eventsFetch(false));
} catch (error) {
console.log(error);
}
};


FetchClient.js


import axios from 'axios';
import { URL_API } from 'app/config'; //localhost:3009
const FetchClient = () => {
const defaultOptiOns= {
baseURL: URL_API,method: 'get',headers: {
'Content-Type': 'application/json'
}
};
const instance = axios.create(defaultOptions);
return instance;
};
export default FetchClient();


actions.js


import * as types from './types';
export const eventsFetch = value => ({
type: types.FETCHING_EVENTS,payload: value
});
export const setEvents = ({ objById,arrayIds }) => ({
type: types.SET_EVENTS,payload: {
eventById: objById,eventsorder: arrayIds
}
});


为什么我无法从axios中的json获取数据





推荐阅读
author-avatar
aarongwang56_972
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有