Skip to content

Instantly share code, notes, and snippets.

@windate3411
Created February 24, 2020 08:17
Show Gist options
  • Save windate3411/4e5e148d49630bbbdcdbe05c2550bd77 to your computer and use it in GitHub Desktop.
Save windate3411/4e5e148d49630bbbdcdbe05c2550bd77 to your computer and use it in GitHub Desktop.
import axios from 'axios';
// 告訴axios你創立的實體要以什麼作為baseURL,特別注意URL需要大寫,這是axios的屬性之一
const baseURL = 'https://jsonplaceholder.typicode.com'
const axiosInstance = axios.create({
baseURL
})
// 輸出你所創立的axios實體
export const apiHelper = axiosInstance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment