Vite中怎么自制mock服务器

服务器   发布日期:2025年02月27日   浏览次数:283

本篇内容主要讲解“Vite中怎么自制mock服务器”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Vite中怎么自制mock服务器”吧!

起步

本篇文章会使用到

  1. swr
  1. axios
  1. vite-plugin-mock
,请自行安装

配置

  1. vite
进入
  1. vite.config.ts
,添加以下代码
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. import { viteMockServe } from 'vite-plugin-mock'
  4. export default defineConfig(({ command }) => ({
  5. plugins: [
  6. react(),
  7. viteMockServe()
  8. ],
  9. }))

创建

  1. mock
数据
  • 创建

    1. mock/test.ts
    文件
  1. mkdir mock/ && touch mock/test.ts
  • 添加 mock 数据

  1. import { MockMethod } from 'vite-plugin-mock'
  2. export default [
  3. {
  4. url: '/api/v1/me',
  5. method: 'get',
  6. response: () => {
  7. return {
  8. id: 1,
  9. name: 'Niki'
  10. }
  11. }
  12. }
  13. ] as MockMethod[]

使用

  1. useSWR

在使用到的组件中用:

  1. import useSWR from 'swr'
  2. import axios from 'axios'
  3. export const Home: React.FC = () => {
  4. const { data, error, isLoading } = useSWR('/api/v1/me', path => {
  5. return axios.get(path)
  6. })
  7. if (isLoading) {
  8. return <div>加载中...</div>
  9. }
  10. if (error) {
  11. return <div>加载失败</div>
  12. }
  13. return (
  14. <div>Hi, I am {data.name}!</div>
  15. )
  16. }

判断是否在开发环境

  1. vite.config.ts
里添加
  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. import { viteMockServe } from 'vite-plugin-mock'
  4. // https://vitejs.dev/config/
  5. export default defineConfig(({ command }) => ({
  6. + define: {
  7. + isDev: command === 'serve' // 它会写在 window.isDev = true / false
  8. + },
  9. plugins: [
  10. react(),
  11. viteMockServe()
  12. ],
  13. }))

封装请求

这里只是简单的封装一下

  1. Axios
  1. mkdir src/lib/ touch src/lib/ajax.tsx
  1. import axios from 'axios'
  2. axios.defaults.baseURL = isDev ? '/' : 'xxx' // 'xxx' 改为线上的 ip:端口
  3. axios.defaults.headers.post['Content-Type'] = 'application/json'
  4. axios.defaults.timeout = 10000
  5. export const ajax = {
  6. get: (path: `/${string}`) => {
  7. return axios.get(path)
  8. }
  9. }

最终使用

  1. import useSWR from 'swr'
  2. import { ajax } from '../lib/ajax'
  3. export const Home: React.FC = () => {
  4. const { data, error, isLoading } = useSWR('/api/v1/me', path => {
  5. return ajax.get(path)
  6. })
  7. if (isLoading) {
  8. return <div>加载中...</div>
  9. }
  10. if (error) {
  11. return <div>加载失败</div>
  12. }
  13. return (
  14. <div>Hi, I am {data.name}!</div>
  15. )
  16. }

以上就是Vite中怎么自制mock服务器的详细内容,更多关于Vite中怎么自制mock服务器的资料请关注九品源码其它相关文章!