vue数据请求(axios--fetch)

数据请求

数据请求的类型

  • get
  • post
  • head
  • put
  • delete
  • option

vue中最常使用的方式

  1. vue 1.x 的版本提供了一个封装库 vue-resource , 但是到了vue 2.x版本之后,这个就弃用了
    • vue-resource使用方法和 axios 相似度在 95%
    • 区别:vue-resouce有jsonp方法,但是axios是没有的
  2. vue2.x版本我们最用使用的数据请求是 axios 和 fetch

数据请求在前端开发中的使用有两种形式

  1. 使用原生javascript提供的数据请求

    • ajax( 四部曲,一般需要我们结合Promise去封装,使用不是很便利,但是效率很高 )
    • fetch( 本身结合了Promise,并且已经做好了封装,可以直接使用 )
  2. 使用别人封装好的第三方库

    • 目前最流行的,使用率最高的是 axios

axios vs fetch

  1. axios得到的结果会进行一层封装,而fetch会直接得到结果

  2. 举例:

    • axios
        {data: 3, status: 200, statusText: "OK", headers: {}, config: {},}
        config: {adapter: ƒ, transformRequest: {}, transformResponse: {}, timeout: 0, xsrfCookieName: "XSRF-TOKEN",}
        data: 3
        headers: {content-type: "text/html; charset=UTF-8"}
        request: XMLHttpRequest {onreadystatechange: ƒ, readyState: 4, timeout: 0, withCredentials: false, upload: XMLHttpRequestUpload,}
        status: 200
        statusText: "OK"
        __proto__: Object
    
    • fetch
        3   //相比上面的 axios  ,  fetch直接输出结果
    

Axios总结

  1. get方法

    1. 无参数
        get () { // 不带参数的使用
            var p = axios.get('http://localhost/get.php') //Promise
            p
            .then( res => console.log( res ))
            .catch ( error => {
                if ( error ) throw error 
            })
        }
    
    1. 有参数
    get() { //带参数的使用
        axios({
            url: 'http://localhost/get.php',
            params: { //params中跟着的是get请求的参数
                a: 1,
                b: 2
            }
        })
        .then(res => console.log(res))
        .catch(error => {
            if (error) throw error
        })
    }
    
  2. post方法

    • 注意: axios中post请求如果直接使用npmjs.com官网文档, 会有坑
    • 解决步骤:
      1. 先设置请求头
      2. 实例化 URLSearchParams的构造器函数得到params对象
      3. 使用params对象身上的append方法进行数据的传参
    // 统一设置请求头
    `axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; `
    
    let params = new URLSearchParams()// params.append(key,value)
    params.append('a',1)
    params.append('b',2)
    axios({
        url: 'http://localhost/post.php',
        method: 'post',
        data: params,
        headers: {  //单个请求设置请求头
        'Content-Type': "application/x-www-form-urlencoded"
        }
    })
    .then(res => {
        console.log( res )
    })
    .catch( error => {
        if( error ){
        throw error
    }
    })
    

Fetch总结

  1. get方法
fetch('http://localhost/get.php?a=1&b=2')
    .then(res=> res.text()) // 数据格式化 res.json() res.blob()
    .then(data => {
        console.log( data )
    })
    .catch(error => {
        if( error ){
        throw error
    }
})
  • 注意事项:
    1. fetch 的 get 请求的参数是直接连接在url上的, 我们可以使用Node.js提供的url或是qureystring模块来将 Object --> String
    2. fetch 的请求返回的是Promise对象,所以我们可以使用.then().catch(),但是要记住.then()至少要写两个, 第一个then是用来格式化数据的,第二个then是可以拿到格式化后的数据
      • 格式化处理方式有
      fetch('./data.json')
      .then(res=>{
          res.json() //res.text() res.blob()
      })
      .then( data => console.log(data))
      .catch( error => console.log( error ))
      
  1. post方法
post () {
    fetch( 'http://localhost/post.php',{
        method: 'POST',
        headers: new Headers({ //解决跨域
        'Content-Type': "application/x-www-form-urlencoded"
        }),
        body: new URLSearchParams([  // 进行参数的修改
        ["a",1],
        ["b",2]
        ]).toString()
    })
        .then( res => res.text() ) // res.json()   res.blob() 不常用
        .then( data => console.log( data ))
        .catch( error => {
        if( error ) throw error 
        })
    }

fetch文档
https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch#进行_fetch_请求

fetch请求博客
https://blog.csdn.net/hefeng6500/article/details/81456975

模拟假数据

  1. mock.js
    http://mockjs.com/
  2. json-server( 启动一个api接口服务器 )
    https://www.npmjs.com/package/json-server#getting-started
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值