我在找到了以下代码。
# Validates the values of an Enumerable with other validators.
# Generates error messages that include the index and value of
# invalid elements.
#
# Example:
#
# validates :values, enum: { presence: true, inclusion: { in: %w{ big small } } }
#
class EnumValidator < ActiveModel::Each
My Form Looks Like this
<form action="" method="post">
<input type="text" name="isbn" placeholder="Enter 10/13 Digit ISBN Number To Sell Your Book"/>
<input type="submit" name="Search Isbn">
</form>
// now i am n
我有4个文本输入字段。当用户在任何字段中输入文本时,我将启用一个按钮。为了实现这一点,我将通过组合4个在流中接收文本的观察值来使用combineLatest。我对如何获取每个观察值的最新值感到不知所措。注意:我想使用一个数组,因为最终会有4个以上的输入域。我也在Kotlin中寻找解决方案。 val text1: PublishSubject<String> = PublishSubject.create()
val text2: PublishSubject<String> = PublishSubject.create()
val text3: PublishSub