json server
インストール
data.jsonでgameTimeとhotGroupデータが作成されました
うんてん
読み込み
https://react.vlpt.us/redux-middleware/08-json-server.html
npm install -g json-server
.jsonファイルの作成data.jsonでgameTimeとhotGroupデータが作成されました
うんてん
json-server --watch 파일경로/파일이름.json --port 4000
ex) json-server --watch ./data.json --port 4000読み込み
import axios from 'axios';
export const getPosts = async () => {
const response = await axios.get('http://localhost:4000/데이터이름(ex:gameTime');
return response.data;
};
export const getPostById = async id => {
const response = await axios.get(`http://localhost:4000/posts/${id}`);
return response.data;
};
リファレンスhttps://react.vlpt.us/redux-middleware/08-json-server.html
Reference
この問題について(json server), 我々は、より多くの情報をここで見つけました https://velog.io/@lipton/json-serverテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol