当前位置:   article > 正文

Vue——vue3 Suspense 异步请求的使用_vue3 异步请求

vue3 异步请求

子组件:

my-project\src\components\AsyncShow.vue

<template>
  <h1>{{ result }}</h1>
</template>
  • 1
  • 2
  • 3
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
  setup() {
    return new Promise((resolve) => {
      setTimeout(() => {
        return resolve({
          result: 42,
        });
      }, 3000);
    });
  },
});
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

使用:

父组件:

my-project\src\App.vue

<template>
  <Suspense>
    <!--  请求成功返回的数据 -->
    <template #default>
      <async-show />
    </template>
    <!-- 请求失败显示的数据 -->
    <template #fallback>
      <h1>Loading !...</h1>
    </template>
  </Suspense>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
<script lang="ts">
import AsyncShow from "./components/AsyncShow.vue";
export default {
  name: "App",
  components: {
    AsyncShow,
  },
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

效果:3秒后显示结果

在这里插入图片描述

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

闽ICP备14008679号