当前位置:   article > 正文

axios基本用法_axioschishuhua

axioschishuhua

一.axios

1.什么是axios

axios 是一个基于Promise 用于浏览器和 nodejs 的 HTTP 客户端。简单的理解就是ajax的封装

它本身具有以下特征:

 

     a.从浏览器中创建 XMLHttpRequest
     b.从 node.js 发出 http 请求
     c.支持 Promise API
     e.拦截请求和响应
     f.转换请求和响应数据
    g.取消请求
    h.自动转换JSON数据

 

    i.客户端支持防止 CSRF/XSRF

2.安装

 nodeJs + webpack+vue+ element ui 环境安装

二.axios  API

(1).向 axios 传递相关配置来创建请求

  1. 1.axios(config)
  2. // 发送 POST 请求
  3. axios({
  4. method: 'post',
  5. url: '/user/12345',
  6. data: {
  7. firstName: 'Fred',
  8. lastName: 'Flintstone'
  9. }
  10. });
  11. 2.axios(url[, config])
  12. // 发送 GET 请求(默认的方法)
  13. axios('/user/12345');

(2).axios提供了一下几种请求方式

  1. 1.axios.get(url[, config]) 执行 GET 请求
  2. eg:
  3. // 向具有指定ID的用户发出请求
  4. axios.get('/user?ID=12345')
  5. .then(function (response) {
  6. console.log(response);
  7. })
  8. .catch(function (error) {
  9. console.log(error);
  10. });
  11. // 也可以通过 params 对象传递参数
  12. axios.get('/user', {
  13. params: {
  14. ID: 12345
  15. }
  16. })
  17. .then(function (response) {
  18. console.log(response);
  19. })
  20. .catch(function (error) {
  21. console.log(error);
  22. });
  23. 2.axios.post(url[, data[, config]]) 执行 POST 请求
  24. eg:
  25. axios.post('/user', {
  26. firstName: 'Fred',
  27. lastName: 'Flintstone'
  28. })
  29. .then(function (response) {
  30. console.log(response);
  31. })
  32. .catch(function (error) {
  33. console.log(error);
  34. });
  35. 3.axios.request(config)
  36. 4.axios.head(url[, config])
  37. 5.axios.delete(url[, config])
  38. 6.axios.put(url[, data[, config]])
  39. 7.axios.patch(url[, data[, config]])
  40. 8.axios.all(iterable)执行多个并发请求
  41. eg:
  42. function getUserAccount() {
  43. return axios.get('/user/12345');
  44. }
  45. function getUserPermissions() {
  46. return axios.get('/user/12345/permissions');
  47. }
  48. axios.all([getUserAccount(), getUserPermissions()])
  49. .then(axios.spread(function (acct, perms) {
  50. // 两个请求现在都执行完成
  51. }));
  52. 9.axios.spread(callback)
  53. 注意:处理并发请求的助手函数axios.all(iterable) axios.spread(callback)

 

(3).请求配置

 

这些是创建请求时可以用的配置选项。只有 url 是必需的。如果没有指定 method,请求将默认使用 get 方法。

  1. //config
  2. {
  3. // `url` 是用于请求的服务器 URL
  4. url: '/user',
  5. // `method` 是创建请求时使用的方法
  6. method: 'get', // 默认是 get
  7. // `baseURL` 将自动加在 `url` 前面,除非 `url` 是一个绝对 URL。
  8. // 它可以通过设置一个 `baseURL` 便于为 axios 实例的方法传递相对 URL
  9. baseURL: 'https://some-domain.com/api/',
  10. // `transformRequest` 允许在向服务器发送前,修改请求数据
  11. // 只能用在 'PUT', 'POST' 和 'PATCH' 这几个请求方法
  12. // 后面数组中的函数必须返回一个字符串,或 ArrayBuffer,或 Stream
  13. transformRequest: [function (data) {
  14. // 对 data 进行任意转换处理
  15. return data;
  16. }],
  17. // `transformResponse` 在传递给 then/catch 前,允许修改响应数据
  18. transformResponse: [function (data) {
  19. // 对 data 进行任意转换处理
  20. return data;
  21. }],
  22. // `headers` 是即将被发送的自定义请求头
  23. headers: {'X-Requested-With': 'XMLHttpRequest'},
  24. // `params` 是即将与请求一起发送的 URL 参数
  25. // 必须是一个无格式对象(plain object)或 URLSearchParams 对象
  26. params: {
  27. ID: 12345
  28. },
  29. // `paramsSerializer` 是一个负责 `params` 序列化的函数
  30. // (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/)
  31. paramsSerializer: function(params) {
  32. return Qs.stringify(params, {arrayFormat: 'brackets'})
  33. },
  34. // `data` 是作为请求主体被发送的数据
  35. // 只适用于这些请求方法 'PUT', 'POST', 和 'PATCH'
  36. // 在没有设置 `transformRequest` 时,必须是以下类型之一:
  37. // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams
  38. // - 浏览器专属:FormData, File, Blob
  39. // - Node 专属: Stream
  40. data: {
  41. firstName: 'Fred'
  42. },
  43. // `timeout` 指定请求超时的毫秒数(0 表示无超时时间)
  44. // 如果请求话费了超过 `timeout` 的时间,请求将被中断
  45. timeout: 1000,
  46. // `withCredentials` 表示跨域请求时是否需要使用凭证
  47. withCredentials: false, // 默认的
  48. // `adapter` 允许自定义处理请求,以使测试更轻松
  49. // 返回一个 promise 并应用一个有效的响应 (查阅 [response docs](#response-api)).
  50. adapter: function (config) {
  51. /* ... */
  52. },
  53. // `auth` 表示应该使用 HTTP 基础验证,并提供凭据
  54. // 这将设置一个 `Authorization` 头,覆写掉现有的任意使用 `headers` 设置的自定义 `Authorization`头
  55. auth: {
  56. username: 'janedoe',
  57. password: 's00pers3cret'
  58. },
  59. // `responseType` 表示服务器响应的数据类型,可以是 'arraybuffer', 'blob', 'document', 'json', 'text', 'stream'
  60. responseType: 'json', // 默认的
  61. // `xsrfCookieName` 是用作 xsrf token 的值的cookie的名称
  62. xsrfCookieName: 'XSRF-TOKEN', // default
  63. // `xsrfHeaderName` 是承载 xsrf token 的值的 HTTP 头的名称
  64. xsrfHeaderName: 'X-XSRF-TOKEN', // 默认的
  65. // `onUploadProgress` 允许为上传处理进度事件
  66. onUploadProgress: function (progressEvent) {
  67. // 对原生进度事件的处理
  68. },
  69. // `onDownloadProgress` 允许为下载处理进度事件
  70. onDownloadProgress: function (progressEvent) {
  71. // 对原生进度事件的处理
  72. },
  73. // `maxContentLength` 定义允许的响应内容的最大尺寸
  74. maxContentLength: 2000,
  75. // `validateStatus` 定义对于给定的HTTP 响应状态码是 resolve 或 reject promise 。如果 `validateStatus` 返回 `true` (或者设置为 `null` 或 `undefined`),promise 将被 resolve; 否则,promise 将被 rejecte
  76. validateStatus: function (status) {
  77. return status >= 200 && status < 300; // 默认的
  78. },
  79. // `maxRedirects` 定义在 node.js 中 follow 的最大重定向数目
  80. // 如果设置为0,将不会 follow 任何重定向
  81. maxRedirects: 5, // 默认的
  82. // `httpAgent` 和 `httpsAgent` 分别在 node.js 中用于定义在执行 http 和 https 时使用的自定义代理。允许像这样配置选项:
  83. // `keepAlive` 默认没有启用
  84. httpAgent: new http.Agent({ keepAlive: true }),
  85. httpsAgent: new https.Agent({ keepAlive: true }),
  86. // 'proxy' 定义代理服务器的主机名称和端口
  87. // `auth` 表示 HTTP 基础验证应当用于连接代理,并提供凭据
  88. // 这将会设置一个 `Proxy-Authorization` 头,覆写掉已有的通过使用 `header` 设置的自定义 `Proxy-Authorization` 头。
  89. proxy: {
  90. host: '127.0.0.1',
  91. port: 9000,
  92. auth: : {
  93. username: 'mikeymike',
  94. password: 'rapunz3l'
  95. }
  96. },
  97. // `cancelToken` 指定用于取消请求的 cancel token
  98. // (查看后面的 Cancellation 这节了解更多)
  99. cancelToken: new CancelToken(function (cancel) {
  100. })
  101. }

 

(4).响应结构

 

某个请求的响应包含以下信息

  1. {
  2. // `data` 由服务器提供的响应
  3. data: {},
  4. // `status` 来自服务器响应的 HTTP 状态码
  5. status: 200,
  6. // `statusText` 来自服务器响应的 HTTP 状态信息
  7. statusText: 'OK',
  8. // `headers` 服务器响应的头
  9. headers: {},
  10. // `config` 是为请求提供的配置信息
  11. config: {}
  12. }
  1. 使用 then 时,你将接收下面这样的响应:
  2. axios.get('/user/12345')
  3. .then(function(response) {
  4. console.log(response.data);
  5. console.log(response.status);
  6. console.log(response.statusText);
  7. console.log(response.headers);
  8. console.log(response.config);
  9. });

 

(5).配置的默认值/defaults

 

你可以指定将被用在各个请求的配置默认值

  1. 1.全局的 axios 默认值
  2. axios.defaults.baseURL = 'https://api.example.com';
  3. axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
  4. axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
  5. 2.自定义实例默认值
  6. // 创建实例时设置配置的默认值
  7. var instance = axios.create({
  8. baseURL: 'https://api.example.com'
  9. });
  10. // 在实例已创建后修改默认值
  11. instance.defaults.headers.common['Authorization'] = AUTH_TOKEN;
  12. 3.配置的优先顺序
  13. 配置会以一个优先顺序进行合并。这个顺序是:在 lib/defaults.js 找到的库的默认值,然后是实例的 defaults 属性,最后是请求的 config 参数。后者将优先于前者。
  14. 这里是一个例子:
  15. // 使用由库提供的配置的默认值来创建实例
  16. // 此时超时配置的默认值是 `0`
  17. var instance = axios.create();
  18. // 覆写库的超时默认值
  19. // 现在,在超时前,所有请求都会等待 2.5 秒
  20. instance.defaults.timeout = 2500;
  21. // 为已知需要花费很长时间的请求覆写超时设置
  22. instance.get('/longRequest', {
  23. timeout: 5000
  24. });

 

(6).拦截器

 

在请求或响应被 then 或 catch 处理前拦截它们。

  1. // 添加请求拦截器
  2. axios.interceptors.request.use(function (config) {
  3. // 在发送请求之前做些什么
  4. return config;
  5. }, function (error) {
  6. // 对请求错误做些什么
  7. return Promise.reject(error);
  8. });
  9. // 添加响应拦截器
  10. axios.interceptors.response.use(function (response) {
  11. // 对响应数据做点什么
  12. return response;
  13. }, function (error) {
  14. // 对响应错误做点什么
  15. return Promise.reject(error);
  16. });
  1. 1.如果你想在稍后移除拦截器,可以这样:
  2. var myInterceptor = axios.interceptors.request.use(function () {/*...*/});
  3. axios.interceptors.request.eject(myInterceptor);
  4. 2.可以为自定义 axios 实例添加拦截器
  5. var instance = axios.create();
  6. instance.interceptors.request.use(function () {/*...*/});

(7).错误处理

  1. axios.get('/user/12345')
  2. .catch(function (error) {
  3. if (error.response) {
  4. // 请求已发出,但服务器响应的状态码不在 2xx 范围内
  5. console.log(error.response.data);
  6. console.log(error.response.status);
  7. console.log(error.response.headers);
  8. } else {
  9. // Something happened in setting up the request that triggered an Error
  10. console.log('Error', error.message);
  11. }
  12. console.log(error.config);
  13. });
  1. 可以使用 validateStatus 配置选项定义一个自定义 HTTP 状态码的错误范围。
  2. axios.get('/user/12345', {
  3. validateStatus: function (status) {
  4. return status < 500; // 状态码在大于或等于500时才会 reject
  5. }
  6. })

请查看官网

三.注意细节

1. 引用 axios 时

Vue.prototype.axios = axios  Vue.prototype.$axios = axios    Vue.prototype.$http = axios  其实是都一个东西,只是vue的原型链上加个变量(且变量不同),值是axios对象 。

只是 一个是jquery封装过的异步调用方法    一个是vue推荐的第三方异步封装方法  他们都是调用的axios对象

只是调用的时候 axios.post({..})   this.$axios.post({...})     this.$http.post({....})

四.案例

1.本地data.json(f放在src同级)

  1. {
  2. "seller": {
  3. "name": "粥品香坊(回龙观)",
  4. "description": "蜂鸟专送",
  5. "deliveryTime": 38,
  6. "score": 4.2,
  7. "serviceScore": 4.1,
  8. "foodScore": 4.3,
  9. "rankRate": 69.2,
  10. "minPrice": 20,
  11. "deliveryPrice": 4,
  12. "ratingCount": 24,
  13. "sellCount": 90,
  14. "bulletin": "粥品香坊其烹饪粥料的秘方源于中国千年古法,在融和现代制作工艺,由世界烹饪大师屈浩先生领衔研发。坚守纯天然、0添加的良心品质深得消费者青睐,发展至今成为粥类的引领品牌。是2008年奥运会和2013年园博会指定餐饮服务商。",
  15. "supports": [{
  16. "type": 0,
  17. "description": "在线支付满28减5"
  18. }, {
  19. "type": 1,
  20. "description": "VC无限橙果汁全场8折"
  21. }, {
  22. "type": 2,
  23. "description": "单人精彩套餐"
  24. }, {
  25. "type": 3,
  26. "description": "该商家支持发票,请下单写好发票抬头"
  27. }, {
  28. "type": 4,
  29. "description": "已加入“外卖保”计划,食品安全保障"
  30. }],
  31. "avatar": "http://static.galileo.xiaojukeji.com/static/tms/seller_avatar_256px.jpg",
  32. "pics": ["http://fuss10.elemecdn.com/8/71/c5cf5715740998d5040dda6e66abfjpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/b/6c/75bd250e5ba69868f3b1178afbda3jpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/f/96/3d608c5811bc2d902fc9ab9a5baa7jpeg.jpeg?imageView2/1/w/180/h/180", "http://fuss10.elemecdn.com/6/ad/779f8620ff49f701cd4c58f6448b6jpeg.jpeg?imageView2/1/w/180/h/180"],
  33. "infos": ["该商家支持发票,请下单写好发票抬头", "品类:其他菜系,包子粥店", "北京市昌平区回龙观西大街龙观置业大厦底商B座102单元1340", "营业时间:10:00-20:30"]
  34. }
  35. }

2.修改webpack-dev-conf.js

最新的vue没有dev-server.js文件,如何进行后台数据模拟?

  1. //第一步
  2. const express = require('express')
  3. const app = express()//请求server
  4. var appData = require('../data.json')//加载本地数据文件
  5. var seller = appData.seller //获取对应的本地数据
  6. var goods = appData.goods
  7. var ratings = appData.ratings
  8. var apiRoutes = express.Router()
  9. app.use('/api', apiRoutes)//通过路由请求数据
  10. //第二步
  11. before(app) {
  12. app.get('/api/seller', (req, res) => {
  13. res.json({
  14. // 这里是你的json内容
  15. errno: 0,
  16. data: seller
  17. })
  18. }),
  19. app.post('/api/seller', (req, res) => {
  20. res.json({
  21. // 这里是你的json内容
  22. errno: 0,
  23. data: seller
  24. })
  25. })
  26. }

3.axios.vue

  1. <template>
  2. <div>
  3. <h1>axios基础介绍</h1>
  4. <button @click="get">get请求</button>
  5. <button @click="post">post请求</button>
  6. <button @click="http">aixos</button>
  7. <p>{{msg}}</p>
  8. </div>
  9. </template>
  10. <script>
  11. import axios from 'axios'
  12. export default {
  13. data () {
  14. return {
  15. msg:'',
  16. }
  17. },
  18. created(){
  19. //全局拦截器
  20. axios.interceptors.request.use(function (config) {
  21. // 在发送请求之前做些什么
  22. console.log('config')
  23. console.log(config)
  24. return config;
  25. }, function (error) {
  26. // 对请求错误做些什么
  27. return Promise.reject(error);
  28. });
  29. },
  30. methods: {
  31. get(){
  32. //1.简单的获取
  33. // axios.get("/api/seller").then(res =>{
  34. // this.msg = res;
  35. // })
  36. //2.传参数
  37. axios.get("/api/seller",{
  38. //传参数
  39. params:{userid:"999"},
  40. //请求头部
  41. headers:{
  42. token:"jack"
  43. }
  44. }).then(res =>{
  45. this.msg = res;
  46. }).catch(function(error){
  47. //获取错误
  48. console.log("error:"+error)
  49. })
  50. },
  51. post(){
  52. axios.post("/api/seller",{
  53. //传参数
  54. userid:"888"
  55. },{
  56. headers:{//请求头部
  57. token:"tom"
  58. }
  59. }).then(res =>{
  60. this.msg = res;
  61. }).catch(function(error){
  62. //获取错误
  63. console.log("error:"+error)
  64. })
  65. },
  66. http(){
  67. //注意:get 传参是params post传参是data
  68. axios({
  69. url:"/api/seller",
  70. methods:"get",
  71. params:{
  72. userid:"101"
  73. },
  74. headers:{
  75. token:"http-test"
  76. }
  77. }).then(res =>{
  78. this.msg = res;
  79. })
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss">
  85. </style>

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/426307
推荐阅读
相关标签
  

闽ICP备14008679号