Skip to content

扩展表单组件教程

在 FormCreate 中,您可以轻松地将自定义的 Vue 组件转换为表单组件,甚至可以与内置表单组件一样使用。以下指南将帮助您理解如何生成自定义表单组件,并展示实际业务场景中的用法。

预定义组件属性和事件

要让您的自定义组件在 FormCreate 中充当表单组件,您需要确保组件实现了 v-model 的基本功能。这意味着组件需要接收和管理 modelValue 以及 disabled 状态,并在值变化时触发 update:modelValue 事件。

Props 接收 在自定义组件内部,确保通过 props 接收以下属性:

js
// vue 组件示例
{
  props: {
    modelValue: String, // 绑定的表单值
    disabled: Boolean   // 组件的禁用状态      
  }
}

触发事件 当组件内部的值发生变化时,通过 update:modelValue 事件通知外部值的更新:

js
this.$emit('update:modelValue', newValue);

挂载表单组件

在生成表单之前,您需要确保自定义组件已通过全局或局部方式挂载。

全局挂载

全局挂载适用于整个 Vue 应用。通过这种方式,组件在应用的任何地方都可以使用。

js
app.component('TestComponent', TestComponent);

局部挂载

局部挂载适用于特定的表单实例。这种方法使得组件只在特定表单中可用,使用 formCreate.component() 方法进行挂载。

js
formCreate.component('TestComponent', TestComponent);

生成表单组件

要在表单中生成自定义表单组件,您需要在生成规则中定义 field 属性,这是表单组件的必需属性。

js
{
    type:'TestComponent',
    value:'test',
    field:'testField',
    title:'自定义组件'
}

参数自动注入

FormCreate 在生成自定义组件时,会自动向组件注入一些有用的参数。这些参数可以帮助你更好地管理组件与表单的交互。

  • formCreateInject
    • formCreateInject.api 表单 API 对象,用于操作表单。
    • formCreateInject.options 表单组件的全局配置。
    • formCreateInject.rule 生成规则对象,定义了组件的所有配置。
    • formCreateInject.field 字段名称,与表单数据绑定。

示例

自定义计数器按钮组件

简单输入框组件

这是一个基本的自定义输入框组件。

vue
<template>
  <input :value="modelValue" @input="updateValue" :disabled="disabled" />
</template>


<script setup>
import { defineProps, defineEmits } from 'vue';
const props = defineProps({
  modelValue: String,
  disabled: Boolean
});
const emit = defineEmits(['update:modelValue']);
const updateValue = (event) => {
  emit('update:modelValue', event.target.value);
};
</script>

自定义选择器组件

这是一个自定义选择器组件,允许用户从给定的选项中选择一个值。

vue
<template>
    <select :value="modelValue" @change="onChange" :disabled="disabled">
        <option v-for="option in options" :key="option.value" :value="option.value">
            {{ option.label }}
        </option>
    </select>
</template>


<script setup>
    import { defineProps, defineEmits } from 'vue';
    const props = defineProps({
        modelValue: [String, Number],
        disabled: Boolean,
        options: {
            type: Array,
            required: true,
        },
    });
    const emit = defineEmits(['update:modelValue']);
    const onChange = (event) => {
        emit('update:modelValue', event.target.value);
    };
</script>

带前缀和后缀的输入框组件

这个组件展示了如何在输入框中添加前缀和后缀。

vue
<template>
    <div>
        <span>{{ prefix }}</span>
        <input :value="modelValue" @input="onInput" :disabled="disabled" />
        <span>{{ suffix }}</span>
    </div>
</template>


<script setup>
    import { defineProps, defineEmits } from 'vue';
    const props = defineProps({
        modelValue: String,
        disabled: Boolean,
        prefix: String,
        suffix: String,
    });
    const emit = defineEmits(['update:modelValue']);
    const onInput = (event) => {
        emit('update:modelValue', event.target.value);
    };
</script>

自定义复合输入组件

这是一个复合组件,结合了输入框和选择器,适用于如选择国家和输入电话号码的场景。

vue
<template>
    <div>
        <select :value="selectedCountry" @change="onCountryChange" :disabled="disabled">
            <option v-for="country in countries" :key="country.value" :value="country.value">
                {{ country.label }}
            </option>
        </select>
        <input :value="modelValue" @input="onInput" :disabled="disabled" placeholder="请输入电话号码" />
    </div>
</template>


<script setup>
    import { defineProps, defineEmits, ref } from 'vue';
    const props = defineProps({
        modelValue: String,
        disabled: Boolean,
        countries: {
            type: Array,
            required: true,
        },
    });
    const emit = defineEmits(['update:modelValue']);
    const selectedCountry = ref(props.countries[0].value);
    const onCountryChange = (event) => {
        selectedCountry.value = event.target.value;
        emit('update:modelValue', ''); // 选择国家后,清空电话号码
    };
    const onInput = (event) => {
        emit('update:modelValue', event.target.value);
    };
</script>

依赖于外部数据源的选择器

这个组件会从远程 API 获取数据并填充到下拉选择框中,用户可以选择一个选项,选择的结果将会影响表单的其他部分。

vue
<template>
    <div>
        <label>
            请选择国家:
            <select :value="selectedCountry" @change="onCountryChange">
                <option v-for="country in countries" :key="country.id" :value="country.id">{{ country.name }}</option>
            </select>
        </label>


<label v-if="cities.length > 0">
            请选择城市:
            <select :value="selectedCity" @change="onCityChange">
                <option v-for="city in cities" :key="city.id" :value="city.id">{{ city.name }}</option>
            </select>
        </label>
    </div>
</template>


<script setup>
    import { ref, onMounted, watch } from 'vue';
    import axios from 'axios';
    // 接收 props 并定义 emits
    const props = defineProps({
        modelValue: {
            type: Object,
            default: () => ({ country: '', city: '' }),
        },
    });
    const emit = defineEmits(['update:modelValue']);
    // 定义状态
    const countries = ref([]);
    const cities = ref([]);
    const selectedCountry = ref(props.modelValue.country);
    const selectedCity = ref(props.modelValue.city);
    // 监听 selectedCountry 的变化
    watch(selectedCountry, async (newCountry) => {
        // 当国家变化时,触发获取城市列表的操作
        await fetchCities(newCountry);
        // 当国家变化时,重置城市选择
        selectedCity.value = '';
        emit('update:modelValue', { country: newCountry, city: '' });
    });
    // 监听 selectedCity 的变化
    watch(selectedCity, (newCity) => {
        emit('update:modelValue', { country: selectedCountry.value, city: newCity });
    });
    // 获取国家列表
    onMounted(async () => {
        const response = await axios.get('/api/countries');
        countries.value = response.data;
        if (selectedCountry.value) {
            await fetchCities(selectedCountry.value);
        }
    });
    // 获取城市列表
    const fetchCities = async (countryId) => {
        const response = await axios.get(`/api/countries/${countryId}/cities`);
        cities.value = response.data;
    };
    // 国家选择事件处理
    const onCountryChange = (event) => {
        selectedCountry.value = event.target.value;
    };
    // 城市选择事件处理
    const onCityChange = (event) => {
        selectedCity.value = event.target.value;
    };
</script>

通过本文档,您应该能够理解如何在 FormCreate 中创建和使用自定义表单组件。自定义组件允许您将业务需求与表单逻辑紧密结合,从而构建更复杂、更灵活的表单应用。无论是简单的输入框,还是复杂的交互组件,FormCreate 都能为您提供极大的开发便利性。

FormCreate 是一个开源项目,基于 MIT 许可证发布,欢迎个人和企业用户免费使用