« Axios » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications
Ligne 10 : Ligne 10 :
     const axios = window.axios;
     const axios = window.axios;
</script>
</script>
</kode>
= Authentication =
<kode lang='js'>
axios.get(url, {
    auth: {
        username: 'xxx',
        password: 'yyy'
    }
})
.then(function (response) { });
</kode>
</kode>

Version du 27 janvier 2021 à 14:49

Links

Client side

Html.svg
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
    const axios = window.axios;
</script>

Authentication

Js.svg
axios.get(url, { 
    auth: {
        username: 'xxx',
        password: 'yyy'
    }
})
.then(function (response) { });