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请求的主要内容,如果未能解决你的问题,请参考以下文章