您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

jsonServerRequest.js 314B

12345678910111213
  1. import axios from 'axios';
  2. const JSON_SERVER_ENDPOINT = 'http://localhost:4000';
  3. const request = axios.create({
  4. baseURL: JSON_SERVER_ENDPOINT,
  5. headers: {
  6. 'Content-Type': 'application/json',
  7. },
  8. });
  9. export const getRequest = (url, params = null, options = null) =>
  10. request.get(url, { params, ...options });