Skip to content

Vben ApiComponent Api组件包装器

框架提供的API“包装器”,它一般不独立使用,主要用于包装其它组件,为目标组件提供自动获取远程数据的能力,但仍然保持了目标组件的原始用法。

写在前面

我们在各个应用的组件适配器中,使用ApiComponent包装了Select、TreeSelect组件,使得这些组件可以自动获取远程数据并生成选项。其它类似的组件(比如Cascader)如有需要也可以参考示例代码自行进行包装。

基础用法

通过 component 传入其它组件的定义,并配置相关的其它属性(主要是一些名称映射)。包装组件将通过api获取数据(beforerFetchafterFetch将分别在api运行前、运行后被调用),使用resultField从中提取数组,使用valueFieldlabelField等来从数据中提取value和label(如果提供了childrenField,会将其作为树形结构递归处理每一级数据),之后将处理好的数据通过optionsPropName指定的属性传递给目标组件。

包装级联选择器,点击下拉时开始加载远程数据
vue
<script lang="ts" setup>
import { ApiComponent } from '@vben/common-ui';

import { Cascader } from 'ant-design-vue';

const treeData: Record<string, any> = [
  {
    label: '浙江',
    value: 'zhejiang',
    children: [
      {
        value: 'hangzhou',
        label: '杭州',
        children: [
          {
            value: 'xihu',
            label: '西湖',
          },
          {
            value: 'sudi',
            label: '苏堤',
          },
        ],
      },
      {
        value: 'jiaxing',
        label: '嘉兴',
        children: [
          {
            value: 'wuzhen',
            label: '乌镇',
          },
          {
            value: 'meihuazhou',
            label: '梅花洲',
          },
        ],
      },
      {
        value: 'zhoushan',
        label: '舟山',
        children: [
          {
            value: 'putuoshan',
            label: '普陀山',
          },
          {
            value: 'taohuadao',
            label: '桃花岛',
          },
        ],
      },
    ],
  },
  {
    label: '江苏',
    value: 'jiangsu',
    children: [
      {
        value: 'nanjing',
        label: '南京',
        children: [
          {
            value: 'zhonghuamen',
            label: '中华门',
          },
          {
            value: 'zijinshan',
            label: '紫金山',
          },
          {
            value: 'yuhuatai',
            label: '雨花台',
          },
        ],
      },
    ],
  },
];
/**
 * 模拟请求接口
 */
function fetchApi(): Promise<Record<string, any>> {
  return new Promise((resolve) => {
    setTimeout(() => {
      resolve(treeData);
    }, 1000);
  });
}
</script>
<template>
  <ApiComponent
    :api="fetchApi"
    :component="Cascader"
    :immediate="false"
    children-field="children"
    loading-slot="suffixIcon"
    visible-event="onDropdownVisibleChange"
  />
</template>

API

Props

属性名描述类型默认值
modelValue(v-model)当前值any-
component欲包装的组件(以下称为目标组件)Component-
numberToString是否将value从数字转为stringbooleanfalse
api获取数据的函数(arg?: any) => Promise<OptionsItem[] | Record<string, any>>-
params传递给api的参数Record<string, any>-
resultField从api返回的结果中提取options数组的字段名string-
labelFieldlabel字段名stringlabel
childrenField子级数据字段名,需要层级数据的组件可用string``
valueFieldvalue字段名stringvalue
optionsPropName目标组件接收options数据的属性名称stringoptions
modelPropName目标组件的双向绑定属性名,默认为modelValue。部分组件可能为valuestringmodelValue
immediate是否立即调用apibooleantrue
alwaysLoad每次visibleEvent事件发生时都重新请求数据booleanfalse
beforeFetch在api请求之前的回调函数AnyPromiseFunction<any, any>-
afterFetch在api请求之后的回调函数AnyPromiseFunction<any, any>-
options直接传入选项数据,也作为api返回空数据时的后备数据OptionsItem[]-
visibleEvent触发重新请求数据的事件名string-
loadingSlot目标组件的插槽名称,用来显示一个"加载中"的图标string-

贡献者

The avatar of contributor named as Netfan Netfan

页面历史

基于 MIT 许可发布.