- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这个时间选择器组件是表单生成器的一部分。我传入一些项目,它们将被处理为文本输入、数字输入……等等。
由于您无法将验证函数存储到数据库中,我们将正则表达式模式存储到数据库中。对于这个例子,我只想检查该字段是否不为空。
该表单生成一个能够验证输入的时间选择器组件。不幸的是,验证为第一个输入返回了 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.value
在 getValidationRules
中访问时仍将是旧值。
我倾向于将 formatBasedRules
编写为计算属性,这样它始终与 value
同步。在初次尝试用户输入之前,可能需要一个标志来防止它显示错误。
关于vue.js - 验证在第一个输入上返回 false,在下一个输入上返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57124435/
class test { public static void main(String[] args){ Object o1 = new Object(); O
我以为我理解了 Python 中的这两个单例值,直到我看到有人在代码中使用 return l1 or l2,其中 l1 和 l2 都是链表对象,并且(s)他想如果不为 None 则返回 l1,否则返回
这个问题在这里已经有了答案: Why does the expression 0 >> (True == False) is False True >>> True == (False is Fals
为什么在 Python 中它是这样评估的: >>> False is False is False True 但是当用括号尝试时表现如预期: >>> (False is False) is False
我有一个名为“apple”的表,我编写了以下查询: select name, count(name), case when istasty is null then fal
python boolean 逻辑中的运算符优先级 print(False==True or False) #answer is True print(False==(False or True))#
请不要看条件,因为它们在这里是为了便于理解行为 为什么 result 等于 true ? boolean result = false && (false)?false:true; 我知道我们可以通过
乍一看,这篇文章可能看起来像是重复的,但事实并非如此。相信我,我已经查看了所有 Stack Overflow,但都无济于事。 无论如何,我从 Html.CheckBoxFor 得到了一些奇怪的行为。
这个问题在这里已经有了答案: python operator precedence of in and comparison (4 个答案) 关闭 6 年前。 我的一位前辈演示了它,我想知道这是否是
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
为什么 {} == false 评估为 false 而 [] == false 评估为 true在 javascript 中? 最佳答案 这是根据 Abstract Equality Comparis
这个问题在这里已经有了答案: Why does (1 in [1,0] == True) evaluate to False? (1 个回答) 关闭7年前。 为什么使用括号时这些语句按预期工作: >>
我试过搜索这个,但我真的不知道如何表达它以查看是否有其他人发布了答案。 但是,我正在制作一个国际象棋游戏和一个人工智能来配合它,这是非常困难的,我的问题是当我检查两个棋子是否在同一个团队时我必须做 (
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
为什么 为 false || null 返回与 null || 不同的结果错误? 我可以安全地依赖 return myVar || false 如果 myVar 为 null 或 false,则返回
我正在尝试遵循 NHibernate 教程,“你的第一个基于 NHibernate 的应用程序:修订 #4”在 NHibernate Forge。 但线路:new SchemaExport(cfg).
这个问题在这里已经有了答案: Empty list boolean value (3 个答案) 关闭 4 年前。 我是 Python 的新手,不理解以下行为: 为什么要声明 [] == False
以下函数循环访问对象的值。如果值为空this.hasInvalidValue设置为true ,如果不为空 this.hasInvalidValue设置为false : user: { email:
所以我正在玩 java.lang.reflect 东西并尝试制作类似 this 的东西。这是我的问题(可能是一个错误): 将字段设置为 true 的方法的代码: private static void
当我在编程时,我的 if 语句出现了意想不到的结果。 这个代码警报怎么会是真的?我在 W3S 没有找到任何可以帮助我的东西,我真的很想知道为什么这些警报是“正确的” window.alert(fals
我是一名优秀的程序员,十分优秀!