当前位置: 首页 > article >正文

【VUE】axios组件

1. 快速使用

  • npm install axios
  • LoginView.vue
    import axios from "axios"
    axios.get("...")
    axios.post("...")
    axios.axios({
    	method: "get"
    })
    

2. 通用配置

  • npm install axios
  • plugins/axios.js
    import axios from "axios";
    
    let config = {
        baseURL: "xxx",
        timeout: 20 * 1000   // ms
    }
    
    const _axios = axios.create(config)
    // 拦截器
    _axios.interceptors.request.use(function (config){
    	xxx;
        return config
    })
    
    export default _axios
    
  • LoginView.vue
    <script setup>
    import _axios from "@/plugins/axios.js";
    _axios.get("/api/v1/course/category/free/?courseType=free").then((res) => {
      console.log(res.data)
    })
    </script>
    

3. 示例

plugins/axios.js

import axios from "axios";

let config = {
    baseURL: "https://api.luffycity.com/",
    timeout: 20 * 1000
}

const _axios = axios.create(config)

// 拦截器
_axios.interceptors.request.use(function (config){
    // console.log("请求前:", config)
    // 1. 去pinia中读取当前用户token
    // 2. 发送请求时携带token
    if(config.params){
        config.params["token"] = "djbfkjbdfkj"
    } else {
        config.params = {"token": "whejsabjdnfj"}
    }
    return config
})

export default _axios

LoginView.vue

<template>
  <div class="box">
    <p>
      用户名:
      <input type="text" placeholder="用户名" v-model="msg.username">
    </p>
    <p>
      密码:
      <input type="text" placeholder="密码" v-model="msg.password">
    </p>
    <p>
      <button @click="doLogin">登录</button>
    </p>
  </div>
</template>

<script setup>
import {ref} from "vue";
import {useRouter} from "vue-router";
import {userInfoStore} from "@/stores/user.js";
import _axios from "@/plugins/axios.js";

const msg = ref({
  username: "",
  password: ""
})
const router = useRouter()
const store = userInfoStore()

const doLogin = function () {
  // 1、获取数据
  console.log(msg.value)
  // 2、发送网络请求
  _axios.get("/api/v1/course/category/free/?courseType=free").then((res) => {
    console.log(res.data)
  })
  // 3、本地存储用户信息(登录凭证)
  // localStorage.setItem("name", msg.value.username)
  let info = {id: 1, name: msg.value.username, token: "ddsafhsjdfkj"}
  store.doLogin(info)
  // 3、跳转到首页
  router.push({name: "mine"})
}

</script>

<style scoped>
.box {
  width: 300px;
  margin: 100px auto;
}
</style>

http://www.kler.cn/a/325843.html

相关文章:

  • python+Django+MySQL+echarts+bootstrap制作的教学质量评价系统,包括学生、老师、管理员三种角色
  • leetcode-44-通配符匹配
  • ScubaGear:用于评估 Microsoft 365 配置是否存在安全漏洞的开源工具
  • 主机型入侵检测系统(HIDS)——Elkeid在Centos7的保姆级安装部署教程
  • 【Git】Git Clone 指定自定义文件夹名称:详尽指南
  • 模糊神经网络学习方法探讨
  • 解决 Pandas 中的 XLRDError:处理 “Excel xlsx file; not supported” 错误
  • 知识产权的力量
  • 四十五、多云/混合云架构设计(多云监控平台与工具介绍)
  • 动态规划算法专题(一):斐波那契数列模型
  • 机器学习课程学习周报十四
  • 常见电脑品牌BIOS设置与进入启动项快捷键
  • 物理学基础精解【23】
  • golang学习笔记27-反射【重要】
  • C++ | Leetcode C++题解之第447题回旋镖的数量
  • 汽车EDI:Martinrea EDI 对接
  • 自动驾驶系统研发系列—智能驾驶守门员:详解DOW(开门预警)功能,开启更安全的驾驶体验
  • 字节C++抖音直播一面-面经总结
  • JAVA线程基础二——锁的概述之乐观锁与悲观锁
  • 【前端】ES12:ES12新特性
  • 【Python报错已解决】TypeError: ‘list‘ object is not callable
  • 探索AI新纪元:揭秘Mammoth库的神秘面纱
  • plt.bar函数介绍及实战
  • linux服务器部署filebeat
  • 【30天玩转python】自动化与脚本编写
  • 各种 JIT(Just-In-Time) 编译器