Skip to content

Instantly share code, notes, and snippets.

@akrisiun
Last active February 12, 2021 10:45
Show Gist options
  • Save akrisiun/a3ca9db4f7ab30464328793e2303c955 to your computer and use it in GitHub Desktop.
Save akrisiun/a3ca9db4f7ab30464328793e2303c955 to your computer and use it in GitHub Desktop.

https://www.positronx.io/handle-ajax-requests-in-vue-js-with-axios-fetch-api/

1 Fetch

https://blog.bitsrc.io/requests-in-vuejs-fetch-api-and-axios-a-comparison-a0c13f241888

<template>
  <div id="app">    {{data}}  </div>
</template>
<script>
export default {
  name: "App",
  data() {
    return {
      data: {}
    }
  },
  beforeMount(){
    this.getName();
  },
  methods: {
    async getName(){
      const res = await fetch('https://api.agify.io/?name=michael');
      const data = await res.json();
      this.data = data;
    }
  }
};
</script>

2 Axios

https://www.positronx.io/handle-ajax-requests-in-vue-js-with-axios-fetch-api/

<template>
  <div>
    <ul class="test-list" v-for="user in usersList" :key="user.id">
      <li class="test-list--item">
        <strong>{{ user.name }}</strong> <br>
        {{ user.email }} <br>
        {{ user.website }}
      </li>
    </ul>
  </div>
</template>

<script>
import axios from "axios";

export default {
  data() {
    return {
      usersList: []
    };
  },
  mounted() {
    axios.get("https://jsonplaceholder.typicode.com/users")
      .then(res => {
        this.usersList = res.data;
        console.log(this.usersList)
      })
      .catch(error => {
        console.log(error)
         // Manage errors if found any
      })
  }
};
</script>

<style>
ul {
  margin: 0 auto;
  width: 300px;
  text-align: left;  
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment