vue中简单的数据请求 fetch axios
Posted LC蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中简单的数据请求 fetch axios相关的知识,希望对你有一定的参考价值。
fetch 不需要额外的安装什么东西,直接就可以使用
fetch(url, { method:‘post‘, headers: { ‘Content-Type‘: ‘application/x-www-form-urlencoded‘ }, body: "name=kerwin&age=100" }).then(res => res.json()).then(data => {console.log(data)}) ------------------------------------------------------------------------------------- fetch(url, { method:‘post‘, headers: { "Content‐Type": "application/json" }, body: JSON.stringify({ name:"kerwin", age:100 }) }).then(res => res.json()).then(data => {console.log(data)})
axios 必须得安装之后才能使用 cnpm i axios
mounted () { axios.get(‘请求的地址‘) .then(res => { console.log(res.data) }) } ------------------------------------------------------------------------------ mounted () { axios.post(‘请求的地址‘, { username: ‘18813007444‘, password: ‘1234456‘ }).then(res => { console.log(res.data) }) }
以上是关于vue中简单的数据请求 fetch axios的主要内容,如果未能解决你的问题,请参考以下文章
vue_请求数据 vue-resource插件 和 axios插件 fetch-jsonp