Vue vue-resource发送Http请求

Posted chenyishi

tags:

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

vue-resource

  1.cnpm install vue-resource --save
  2.在main.js中import VueResource from ‘vue-resource‘
  3.在main.js中Vue.use(VueResource)
  4.在组件中使用this.$http.get(url).then((response)=>{},(err)=>{})

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

<script>
import Home from "./components/Home.vue";
export default {
  name: "app",
  data() {
    return {
      flag: true,
      htmlValue: ""
    };
  },
  methods: {
    getData() {
      this.$http.post(`http://360.com/api/auth/login`).then(
        res => {
          console.log(res);
          this.htmlValue = res.body;
        },
        err => {}
      );
    }
  },
  mounted(){
    this.getData();
  }
};
</script>

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

 




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

使用 vue-resource 发送跨域请求

vue-resource发送post请求服务器接收不到数据

Vue-resource中post请求将data数据以request payload转换为form data的形式

vue中使用vue-resource发送ajax请求

vue-resource的使用

记一个vue-resource请求的低级错误