“Доступ к данным из Axios .Then vue.js” Ответ

Axios Post Data Vue JS

<template>
 <form class="" method="post" @submit.prevent="postNow">
 <input type="text" name="" value="" v-model="name">
 <button type="submit" name="button">Submit</button>
 </form>
</template>

export default {
  name: 'formPost',
  data() {
    return {
      name: '',
      show: false,
    };
  },
  methods: {
   postNow() {
  axios.post('http://localhost:3030/api/new/post', {
    headers: {
      'Content-type': 'application/x-www-form-urlencoded',
    },
    body: this.name,
   });
  },
  components: {
    Headers,
    Footers,
  },
};
Silly Shrew

Доступ к данным из Axios .Then vue.js


created() {
    var self = this;
    axios.get('http://127.0.0.1/api/bills')
        .then(function (response) {
                self.contas = response.data;
                });
}

Cruel Cat

Ответы похожие на “Доступ к данным из Axios .Then vue.js”

Вопросы похожие на “Доступ к данным из Axios .Then vue.js”

Больше похожих ответов на “Доступ к данным из Axios .Then vue.js” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования