« Axios » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
|||
Ligne 14 : | Ligne 14 : | ||
= Authentication = | = Authentication = | ||
<kode lang='js'> | <kode lang='js'> | ||
axios. | const instance = axios.create({ | ||
baseURL: 'https://www.domain.net/api', | |||
auth: { | auth: { | ||
username: 'xxx', | username: 'xxx', | ||
password: 'yyy' | password: 'yyy' | ||
} | } | ||
}); | |||
</kode> | </kode> |
Version du 27 janvier 2021 à 15:00
Links
Client side
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> <script> const axios = window.axios; </script> |
Authentication
const instance = axios.create({ baseURL: 'https://www.domain.net/api', auth: { username: 'xxx', password: 'yyy' } }); |