axios在vue框架中的get请求和post请求

axios在vue框架中的get请求和post请求

1、首先用脚手架搭建一个项目
2、使用npm下载包npm install axios
(以上两个步骤不清楚可以看我前面的文章)
3、在components文件夹中新建文件
在这里插入图片描述
4、注意要引用axios

import axios from 'axios'

5、以下是代码(get的url地址是后台提供的接口)
axios get无参请求

<template>
  <div class="aget">
    <h1>这里是axios的get请求</h1>
    <button @click='getdata'>get方式的无参请求</button>
  </div>
</template>

<script>
//引入axios
import axios from 'axios'
export default {
  methods: {
    getdata () {
      // 这里是url地址是后台提供的接口
      axios.get('http://127.0.0.1:4444/api/v1/index/search')
      //  请求成功之后的回调函数
        .then((res) => {
          console.log(res)
        })
      // 请求失败之后的回调函数
        .catch((err) => {
          console.log(err)
        })
    }
  }
}
</script>

<style>

</style>

6、要在main.js修改开启文件

import Vue from 'vue'
// import App from './App.vue'
import App from './components/01-axios发起get请求.vue'

Vue.config.productionTip = false

new Vue({
  render: h => h(App)
}).$mount('#app')

7、npm run serve打开浏览器即可查看控制台已经get到数据
在这里插入图片描述
axios get有参请求
传递参数的时候,params名称固定,它的值是一个对象,对象中就是你本次请求所需要传递的参数

params: {
          articleId: 8
        }
<template>
  <div class="aget">
    <h1>这里是axios的get请求</h1>
    <button @click='getdata'>get方式的无参请求</button>
    <button @click='getdata2'>get方式的带参请求</button>
  </div>
</template>

<script>
import axios from 'axios'
export default {
  methods: {
    getdata () {
      // 这里是url地址是后台提供的接口
      axios.get('http://localhost:5000/api/v1/index/search')
      //  请求成功之后的回调函数
        .then((res) => {
          console.log(res)
        })
      // 请求失败之后的回调函数
        .catch((err) => {
          console.log(err)
        })
    },
    getdata2 () {
      axios.get('http://127.0.0.1:5000/api/v1/index/get_comment', {
        params: {
          articleId: 8
        }
      })
        .then((res) => {
          console.log(res)
        })
        .catch((err) => {
          console.log(err)
        })
    }
  }
}
</script>

<style>

</style>

在这里插入图片描述
axios post请求

<template>
  <div class="post">
    <h1>这个文件主要用于演示如何使用axios发起post方式的请求</h1>分类名称:
    <input type="text" v-model="cate.author" />
    <br />分类别名:
    <input type="text" v-model="cate.content" />
    <br />
    <button @click='addCate'>添加分类</button>
  </div>
</template>

<script>
import axios from 'axios'
export default {
  data () {
    return {
      cate: {
        // 这里要和你数据库的命名一致
        author: '',
        content: ''
      }
    }
  },
  methods: {
    addCate () {
      // 这里是url地址是后台提供的接口
      axios.post('http://127.0.0.1:5000/api/v1/index/post_comment', this.cate)
      //  请求成功之后的回调函数
        .then((res) => {
          console.log(res)
        })
      // 请求失败之后的回调函数
        .catch((err) => {
          console.log(err)
        })
    }

  }
}

</script>

<style>
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值