gpt4 book ai didi

vue.js - 验证在第一个输入上返回 false,在下一个输入上返回 true

转载 作者:搜寻专家 更新时间:2023-10-30 22:24:33 24 4
gpt4 key购买 nike

这个时间选择器组件是表单生成器的一部分。我传入一些项目,它们将被处理为文本输入、数字输入……等等。

由于您无法将验证函数存储到数据库中,我们将正则表达式模式存储到数据库中。对于这个例子,我只想检查该字段是否不为空。

该表单生成一个能够验证输入的时间选择器组件。不幸的是,验证为第一个输入返回了 false。第二次更改时间时,它返回 true。清除该字段也将返回 true

我创建了一个演示。消费组件使用此代码

<template>
<v-app id="inspire">
<TimeField
v-for="maskItem in maskItems"
:key="maskItem.fieldId"
:value="maskItem.value"
:rules="getValidation(maskItem)"
@input="onMaskItemValueUpdated(maskItem.fieldId, ...arguments)"
/>
</v-app>
</template>

<script>
import TimeField from "./components/TimeField";

export default {
components: {
TimeField
},
data: function() {
return {
maskItems: [
{
fieldId: 1,
value: null,
validation: [
{
pattern: new RegExp(".{1,}"),
message: "This field is required"
}
]
}
]
};
},
methods: {
getValidation: function(maskItem) {
return maskItem.validation.map(rule => value =>
(value && rule.pattern.test(value)) || rule.message
);
},
onMaskItemValueUpdated: function(fieldId, newValue) {
this.maskItems.find(
fieldToUpdate => fieldToUpdate.fieldId === fieldId
).value = newValue;
}
}
};
</script>

如果时间选择器应该显示特定语言环境的时间格式,它本身能够格式化时间。格式化日期时,文本字段会将格式化的日期传递给验证。这是错误的。为了处理这种行为,我创建了 getValidationRules 函数并将正确的值传递给验证。然而,它正在使用这段代码

<template>
<v-menu :value="showMenu" max-width="290px">
<template v-slot:activator="{ on }">
<v-text-field
:value="formattedTime"
clearable
v-on="on"
:required="true"
:rules="formatBasedRules"
@input="selectValue"
></v-text-field>
</template>
<v-time-picker :value="value" @input="selectValue"/>
</v-menu>
</template>

<script>
export default {
props: {
value: {
type: String,
default: ""
},
rules: {
type: Array,
default: () => []
}
},
data: function() {
return {
showMenu: false,
formatBasedRules: [true]
};
},
computed: {
formattedTime: function() {
// ... !! format time here !! ...
return this.value;
}
},
mounted: function() {
this.formatBasedRules = this.getValidationRules();
},
methods: {
selectValue: function(newValue) {
this.showMenu = false;
this.$emit("input", newValue);
this.formatBasedRules = this.getValidationRules();
},
getValidationRules: function() {
for (const rule of this.rules) {
const result = rule(this.value);

if (typeof result === "string") {
return [result];
}
}

return [true];
}
}
};
</script>

我创建了一个复制示例

https://codesandbox.io/s/menu-picker-validation-eorep

只需选择一个时间,您就会收到一条错误消息。选择另一个时间,验证将返回 true。清除该字段也将返回 true

有人知道这里出了什么问题吗?

最佳答案

这里有一个不正确的假设:

this.$emit("input", newValue);
this.formatBasedRules = this.getValidationRules(newValue);

然后在 getValidationRules 中:

const result = rule(this.value);

发出 input 事件将立即更新父组件中的数据,但在下一轮渲染发生之前,子组件不会更新该数据。渲染不会立即发生,它会在下一个 tick 开始时分批进行。在渲染发生之前,value 属性的新值不会传递给 child 。因此,this.valuegetValidationRules 中访问时仍将是旧值。

我倾向于将 formatBasedRules 编写为计算属性,这样它始终与 value 同步。在初次尝试用户输入之前,可能需要一个标志来防止它显示错误。

关于vue.js - 验证在第一个输入上返回 false,在下一个输入上返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57124435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com