首页 > 移动平台 > 详细

vue中简单的数据请求 fetch axios

时间:2019-09-28 14:23:53      阅读:52      评论:0      收藏:0      [点我收藏+]

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

原文:https://www.cnblogs.com/skydragonli/p/11602494.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!