Vue axios发送Http请求

Posted chester.chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue axios发送Http请求相关的知识,希望对你有一定的参考价值。

axios

  1.cnpm install axios --save
  2.在vue文件中引入,import Axios from ‘axios‘
  3.使用,Axios.get(url).then((res)=>{}).catch((err)=>{})

<template>
  <div id="app">
    <div v-html="htmlValue"></div>
  </div>
</template>

<script>
import Axios from "axios";
export default {
  name: "app",
  data() {
    return {
      flag: true,
      htmlValue: ""
    };
  },
  methods: {
    getData() {
      Axios.post(`http://api2.cpf360.com/api/auth/login`)
        .then(res => {
          console.log(res)
          this.htmlValue=res.data
        })
        .catch(err => {});
    }
  },
  mounted() {
    this.getData();
  }
};
</script>

<style lang="scss">
</style>

 



以上是关于Vue axios发送Http请求的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段14——Vue的axios网络请求封装

Vue axios发送Http请求

Vue 使用axios发送请求

vue中axios请求成功了如何把数据渲染到页面上?

vue中axios怎么分服务

Vue发送请求