43、接口请求需要时间,导致页面初始加载时会出现空白,影响用户体验

1. 显示加载状态

在接口请求数据的过程中,显示一个加载状态提示,让用户知道页面正在加载数据。

示例代码

vue

复制代码
<template>
  <div>
    <!-- 显示加载状态 -->
    <div v-if="isLoading">
      <p>正在加载数据,请稍候...</p>
    </div>
    <!-- 数据加载完成后显示动态组件 -->
    <component v-else :is="currentComponent" :data="componentData"></component>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isLoading: true,
      currentComponent: null,
      componentData: null
    };
  },
  mounted() {
    this.fetchData();
  },
  methods: {
    async fetchData() {
      try {
        // 模拟接口请求
        const response = await this.$axios.get('/api/data');
        const { componentName, data } = response.data;
        this.currentComponent = componentName;
        this.componentData = data;
      } catch (error) {
        console.error('数据请求失败:', error);
      } finally {
        this.isLoading = false;
      }
    }
  }
};
</script>

2. 预加载组件

在页面加载之前,提前加载一些常用的组件,减少组件加载的时间。

示例代码

javascript

复制代码
// main.js
import Vue from 'vue';
import App from './App.vue';
// 预加载组件
import ComponentA from './components/ComponentA.vue';
import ComponentB from './components/ComponentB.vue';

Vue.component('ComponentA', ComponentA);
Vue.component('ComponentB', ComponentB);

new Vue({
  render: h => h(App)
}).$mount('#app');

3. 骨架屏

骨架屏是一种在数据加载过程中显示的占位布局,它模拟了页面的基本结构,让用户对页面内容有一个初步的了解。

示例代码

vue

复制代码
<template>
  <div>
    <!-- 骨架屏 -->
    <div v-if="isLoading" class="skeleton-screen">
      <!-- 这里可以根据页面结构设计骨架屏样式 -->
      <div class="skeleton-item"></div>
      <div class="skeleton-item"></div>
    </div>
    <!-- 数据加载完成后显示动态组件 -->
    <component v-else :is="currentComponent" :data="componentData"></component>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isLoading: true,
      currentComponent: null,
      componentData: null
    };
  },
  mounted() {
    this.fetchData();
  },
  methods: {
    async fetchData() {
      try {
        // 模拟接口请求
        const response = await this.$axios.get('/api/data');
        const { componentName, data } = response.data;
        this.currentComponent = componentName;
        this.componentData = data;
      } catch (error) {
        console.error('数据请求失败:', error);
      } finally {
        this.isLoading = false;
      }
    }
  }
};
</script>

<style scoped>
.skeleton-screen {
  display: flex;
  flex-direction: column;
}

.skeleton-item {
  width: 100%;
  height: 20px;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  border-radius: 4px;
}
</style>

4. 缓存数据

如果接口数据在短时间内不会发生变化,可以将数据缓存起来,下次进入页面时直接使用缓存数据,减少接口请求时间。

示例代码

javascript

复制代码
// 缓存数据
const cache = {};

export default {
  data() {
    return {
      isLoading: true,
      currentComponent: null,
      componentData: null
    };
  },
  mounted() {
    const cachedData = cache['api/data'];
    if (cachedData) {
      const { componentName, data } = cachedData;
      this.currentComponent = componentName;
      this.componentData = data;
      this.isLoading = false;
    } else {
      this.fetchData();
    }
  },
  methods: {
    async fetchData() {
      try {
        // 模拟接口请求
        const response = await this.$axios.get('/api/data');
        const { componentName, data } = response.data;
        this.currentComponent = componentName;
        this.componentData = data;
        // 缓存数据
        cache['api/data'] = { componentName, data };
      } catch (error) {
        console.error('数据请求失败:', error);
      } finally {
        this.isLoading = false;
      }
    }
  }
};

通过以上方法,可以有效改善页面初始加载时的空白问题,提升用户体验。你可以根据实际需求选择合适的方法。

相关推荐
QTX1873015 分钟前
JavaScript 中的原型链与继承
开发语言·javascript·原型模式
黄毛火烧雪下21 分钟前
React Context API 用于在组件树中共享全局状态
前端·javascript·react.js
三翼鸟数字化技术团队1 小时前
Vue自定义指令最佳实践教程
前端·vue.js
猿榜2 小时前
js逆向-喜某拉雅Xm-Sign参数解密
javascript
转转技术团队2 小时前
代码变更暗藏危机?代码影响范围分析为你保驾护航
前端·javascript·node.js
Spark2382 小时前
关于vue3整合tiptap的slash菜单的ts支持
vue.js
Mintopia2 小时前
Node.js高级实战:自定义流与Pipeline的高效数据处理 ——从字母生成器到文件管道的深度解析
前端·javascript·node.js
Mintopia2 小时前
Three.js深度解析:InstancedBufferGeometry实现动态星空特效 ——高效渲染十万粒子的底层奥秘
前端·javascript·three.js
随笔记2 小时前
Flex布局下,label标签设置宽度依旧对不齐,完美解决(flex-shrink属性)
javascript·css·vue.js
樊小肆2 小时前
实战!从 0 到 1 搭建 H5 AI 对话页面
前端·vue.js